xref: /linux/fs/locks.c (revision 46dad7603f21d64207820580c0bafd47934686d4)
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! */
51488974691SJeff Layton static inline void
51588974691SJeff Layton locks_insert_global_locks(struct file_lock *fl)
51688974691SJeff Layton {
5177012b02aSJeff Layton 	lg_local_lock(&file_lock_lglock);
5187012b02aSJeff Layton 	fl->fl_link_cpu = smp_processor_id();
5197012b02aSJeff Layton 	hlist_add_head(&fl->fl_link, this_cpu_ptr(&file_lock_list));
5207012b02aSJeff Layton 	lg_local_unlock(&file_lock_lglock);
52188974691SJeff Layton }
52288974691SJeff Layton 
5237012b02aSJeff Layton /* Must be called with the i_lock held! */
52488974691SJeff Layton static inline void
52588974691SJeff Layton locks_delete_global_locks(struct file_lock *fl)
52688974691SJeff Layton {
5277012b02aSJeff Layton 	/*
5287012b02aSJeff Layton 	 * Avoid taking lock if already unhashed. This is safe since this check
5297012b02aSJeff Layton 	 * is done while holding the i_lock, and new insertions into the list
5307012b02aSJeff Layton 	 * also require that it be held.
5317012b02aSJeff Layton 	 */
5327012b02aSJeff Layton 	if (hlist_unhashed(&fl->fl_link))
5337012b02aSJeff Layton 		return;
5347012b02aSJeff Layton 	lg_local_lock_cpu(&file_lock_lglock, fl->fl_link_cpu);
535139ca04eSJeff Layton 	hlist_del_init(&fl->fl_link);
5367012b02aSJeff Layton 	lg_local_unlock_cpu(&file_lock_lglock, fl->fl_link_cpu);
53788974691SJeff Layton }
53888974691SJeff Layton 
5393999e493SJeff Layton static unsigned long
5403999e493SJeff Layton posix_owner_key(struct file_lock *fl)
5413999e493SJeff Layton {
5423999e493SJeff Layton 	if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
5433999e493SJeff Layton 		return fl->fl_lmops->lm_owner_key(fl);
5443999e493SJeff Layton 	return (unsigned long)fl->fl_owner;
5453999e493SJeff Layton }
5463999e493SJeff Layton 
54788974691SJeff Layton static inline void
54888974691SJeff Layton locks_insert_global_blocked(struct file_lock *waiter)
54988974691SJeff Layton {
5503999e493SJeff Layton 	hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
55188974691SJeff Layton }
55288974691SJeff Layton 
55388974691SJeff Layton static inline void
55488974691SJeff Layton locks_delete_global_blocked(struct file_lock *waiter)
55588974691SJeff Layton {
55648f74186SJeff Layton 	hash_del(&waiter->fl_link);
55788974691SJeff Layton }
55888974691SJeff Layton 
5591da177e4SLinus Torvalds /* Remove waiter from blocker's block list.
5601da177e4SLinus Torvalds  * When blocker ends up pointing to itself then the list is empty.
5611c8c601aSJeff Layton  *
5627b2296afSJeff Layton  * Must be called with blocked_lock_lock held.
5631da177e4SLinus Torvalds  */
56433443c42SMatt Mackall static void __locks_delete_block(struct file_lock *waiter)
5651da177e4SLinus Torvalds {
56688974691SJeff Layton 	locks_delete_global_blocked(waiter);
5671da177e4SLinus Torvalds 	list_del_init(&waiter->fl_block);
5681da177e4SLinus Torvalds 	waiter->fl_next = NULL;
5691da177e4SLinus Torvalds }
5701da177e4SLinus Torvalds 
5711a9e64a7SJeff Layton static void locks_delete_block(struct file_lock *waiter)
5721da177e4SLinus Torvalds {
5737b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
5741da177e4SLinus Torvalds 	__locks_delete_block(waiter);
5757b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
5761da177e4SLinus Torvalds }
5771da177e4SLinus Torvalds 
5781da177e4SLinus Torvalds /* Insert waiter into blocker's block list.
5791da177e4SLinus Torvalds  * We use a circular list so that processes can be easily woken up in
5801da177e4SLinus Torvalds  * the order they blocked. The documentation doesn't require this but
5811da177e4SLinus Torvalds  * it seems like the reasonable thing to do.
5821c8c601aSJeff Layton  *
5837b2296afSJeff Layton  * Must be called with both the i_lock and blocked_lock_lock held. The fl_block
584*46dad760SJeff Layton  * list itself is protected by the blocked_lock_lock, but by ensuring that the
5857b2296afSJeff Layton  * i_lock is also held on insertions we can avoid taking the blocked_lock_lock
5864e8c765dSJeff Layton  * in some cases when we see that the fl_block list is empty.
5871da177e4SLinus Torvalds  */
5881c8c601aSJeff Layton static void __locks_insert_block(struct file_lock *blocker,
5891da177e4SLinus Torvalds 					struct file_lock *waiter)
5901da177e4SLinus Torvalds {
5916dc0fe8fSJ. Bruce Fields 	BUG_ON(!list_empty(&waiter->fl_block));
5921da177e4SLinus Torvalds 	waiter->fl_next = blocker;
59388974691SJeff Layton 	list_add_tail(&waiter->fl_block, &blocker->fl_block);
5941da177e4SLinus Torvalds 	if (IS_POSIX(blocker))
5951c8c601aSJeff Layton 		locks_insert_global_blocked(waiter);
5961c8c601aSJeff Layton }
5971c8c601aSJeff Layton 
5981c8c601aSJeff Layton /* Must be called with i_lock held. */
5991c8c601aSJeff Layton static void locks_insert_block(struct file_lock *blocker,
6001c8c601aSJeff Layton 					struct file_lock *waiter)
6011c8c601aSJeff Layton {
6027b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
6031c8c601aSJeff Layton 	__locks_insert_block(blocker, waiter);
6047b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
6051da177e4SLinus Torvalds }
6061da177e4SLinus Torvalds 
6071cb36012SJeff Layton /*
6081cb36012SJeff Layton  * Wake up processes blocked waiting for blocker.
6091cb36012SJeff Layton  *
6101c8c601aSJeff Layton  * Must be called with the inode->i_lock held!
6111da177e4SLinus Torvalds  */
6121da177e4SLinus Torvalds static void locks_wake_up_blocks(struct file_lock *blocker)
6131da177e4SLinus Torvalds {
6144e8c765dSJeff Layton 	/*
6154e8c765dSJeff Layton 	 * Avoid taking global lock if list is empty. This is safe since new
6164e8c765dSJeff Layton 	 * blocked requests are only added to the list under the i_lock, and
6174e8c765dSJeff Layton 	 * the i_lock is always held here. Note that removal from the fl_block
6184e8c765dSJeff Layton 	 * list does not require the i_lock, so we must recheck list_empty()
6197b2296afSJeff Layton 	 * after acquiring the blocked_lock_lock.
6204e8c765dSJeff Layton 	 */
6214e8c765dSJeff Layton 	if (list_empty(&blocker->fl_block))
6224e8c765dSJeff Layton 		return;
6234e8c765dSJeff Layton 
6247b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
6251da177e4SLinus Torvalds 	while (!list_empty(&blocker->fl_block)) {
626f0c1cd0eSPavel Emelyanov 		struct file_lock *waiter;
627f0c1cd0eSPavel Emelyanov 
628f0c1cd0eSPavel Emelyanov 		waiter = list_first_entry(&blocker->fl_block,
6291da177e4SLinus Torvalds 				struct file_lock, fl_block);
6301da177e4SLinus Torvalds 		__locks_delete_block(waiter);
6318fb47a4fSJ. Bruce Fields 		if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
6328fb47a4fSJ. Bruce Fields 			waiter->fl_lmops->lm_notify(waiter);
6331da177e4SLinus Torvalds 		else
6341da177e4SLinus Torvalds 			wake_up(&waiter->fl_wait);
6351da177e4SLinus Torvalds 	}
6367b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
6371da177e4SLinus Torvalds }
6381da177e4SLinus Torvalds 
6391da177e4SLinus Torvalds /* Insert file lock fl into an inode's lock list at the position indicated
6401da177e4SLinus Torvalds  * by pos. At the same time add the lock to the global file lock list.
6411c8c601aSJeff Layton  *
6421c8c601aSJeff Layton  * Must be called with the i_lock held!
6431da177e4SLinus Torvalds  */
6441da177e4SLinus Torvalds static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
6451da177e4SLinus Torvalds {
646ab1f1611SVitaliy Gusev 	fl->fl_nspid = get_pid(task_tgid(current));
647ab1f1611SVitaliy Gusev 
6481da177e4SLinus Torvalds 	/* insert into file's list */
6491da177e4SLinus Torvalds 	fl->fl_next = *pos;
6501da177e4SLinus Torvalds 	*pos = fl;
65188974691SJeff Layton 
65288974691SJeff Layton 	locks_insert_global_locks(fl);
6531da177e4SLinus Torvalds }
6541da177e4SLinus Torvalds 
65524cbe784SJeff Layton /**
65624cbe784SJeff Layton  * locks_delete_lock - Delete a lock and then free it.
65724cbe784SJeff Layton  * @thisfl_p: pointer that points to the fl_next field of the previous
65824cbe784SJeff Layton  * 	      inode->i_flock list entry
65924cbe784SJeff Layton  *
66024cbe784SJeff Layton  * Unlink a lock from all lists and free the namespace reference, but don't
66124cbe784SJeff Layton  * free it yet. Wake up processes that are blocked waiting for this lock and
66224cbe784SJeff Layton  * notify the FS that the lock has been cleared.
6631c8c601aSJeff Layton  *
6641c8c601aSJeff Layton  * Must be called with the i_lock held!
6651da177e4SLinus Torvalds  */
66624cbe784SJeff Layton static void locks_unlink_lock(struct file_lock **thisfl_p)
6671da177e4SLinus Torvalds {
6681da177e4SLinus Torvalds 	struct file_lock *fl = *thisfl_p;
6691da177e4SLinus Torvalds 
67088974691SJeff Layton 	locks_delete_global_locks(fl);
67188974691SJeff Layton 
6721da177e4SLinus Torvalds 	*thisfl_p = fl->fl_next;
6731da177e4SLinus Torvalds 	fl->fl_next = NULL;
6741da177e4SLinus Torvalds 
675ab1f1611SVitaliy Gusev 	if (fl->fl_nspid) {
676ab1f1611SVitaliy Gusev 		put_pid(fl->fl_nspid);
677ab1f1611SVitaliy Gusev 		fl->fl_nspid = NULL;
678ab1f1611SVitaliy Gusev 	}
679ab1f1611SVitaliy Gusev 
6801da177e4SLinus Torvalds 	locks_wake_up_blocks(fl);
68124cbe784SJeff Layton }
68224cbe784SJeff Layton 
68324cbe784SJeff Layton /*
68424cbe784SJeff Layton  * Unlink a lock from all lists and free it.
68524cbe784SJeff Layton  *
68624cbe784SJeff Layton  * Must be called with i_lock held!
68724cbe784SJeff Layton  */
68824cbe784SJeff Layton static void locks_delete_lock(struct file_lock **thisfl_p)
68924cbe784SJeff Layton {
69024cbe784SJeff Layton 	struct file_lock *fl = *thisfl_p;
69124cbe784SJeff Layton 
69224cbe784SJeff Layton 	locks_unlink_lock(thisfl_p);
6931da177e4SLinus Torvalds 	locks_free_lock(fl);
6941da177e4SLinus Torvalds }
6951da177e4SLinus Torvalds 
6961da177e4SLinus Torvalds /* Determine if lock sys_fl blocks lock caller_fl. Common functionality
6971da177e4SLinus Torvalds  * checks for shared/exclusive status of overlapping locks.
6981da177e4SLinus Torvalds  */
6991da177e4SLinus Torvalds static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
7001da177e4SLinus Torvalds {
7011da177e4SLinus Torvalds 	if (sys_fl->fl_type == F_WRLCK)
7021da177e4SLinus Torvalds 		return 1;
7031da177e4SLinus Torvalds 	if (caller_fl->fl_type == F_WRLCK)
7041da177e4SLinus Torvalds 		return 1;
7051da177e4SLinus Torvalds 	return 0;
7061da177e4SLinus Torvalds }
7071da177e4SLinus Torvalds 
7081da177e4SLinus Torvalds /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
7091da177e4SLinus Torvalds  * checking before calling the locks_conflict().
7101da177e4SLinus Torvalds  */
7111da177e4SLinus Torvalds static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
7121da177e4SLinus Torvalds {
7131da177e4SLinus Torvalds 	/* POSIX locks owned by the same process do not conflict with
7141da177e4SLinus Torvalds 	 * each other.
7151da177e4SLinus Torvalds 	 */
7161da177e4SLinus Torvalds 	if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
7171da177e4SLinus Torvalds 		return (0);
7181da177e4SLinus Torvalds 
7191da177e4SLinus Torvalds 	/* Check whether they overlap */
7201da177e4SLinus Torvalds 	if (!locks_overlap(caller_fl, sys_fl))
7211da177e4SLinus Torvalds 		return 0;
7221da177e4SLinus Torvalds 
7231da177e4SLinus Torvalds 	return (locks_conflict(caller_fl, sys_fl));
7241da177e4SLinus Torvalds }
7251da177e4SLinus Torvalds 
7261da177e4SLinus Torvalds /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
7271da177e4SLinus Torvalds  * checking before calling the locks_conflict().
7281da177e4SLinus Torvalds  */
7291da177e4SLinus Torvalds static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
7301da177e4SLinus Torvalds {
7311da177e4SLinus Torvalds 	/* FLOCK locks referring to the same filp do not conflict with
7321da177e4SLinus Torvalds 	 * each other.
7331da177e4SLinus Torvalds 	 */
7341da177e4SLinus Torvalds 	if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
7351da177e4SLinus Torvalds 		return (0);
7361da177e4SLinus Torvalds 	if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
7371da177e4SLinus Torvalds 		return 0;
7381da177e4SLinus Torvalds 
7391da177e4SLinus Torvalds 	return (locks_conflict(caller_fl, sys_fl));
7401da177e4SLinus Torvalds }
7411da177e4SLinus Torvalds 
7426d34ac19SJ. Bruce Fields void
7439d6a8c5cSMarc Eshel posix_test_lock(struct file *filp, struct file_lock *fl)
7441da177e4SLinus Torvalds {
7451da177e4SLinus Torvalds 	struct file_lock *cfl;
7461c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
7471da177e4SLinus Torvalds 
7481c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
749496ad9aaSAl Viro 	for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
7501da177e4SLinus Torvalds 		if (!IS_POSIX(cfl))
7511da177e4SLinus Torvalds 			continue;
752b842e240SJ. Bruce Fields 		if (posix_locks_conflict(fl, cfl))
7531da177e4SLinus Torvalds 			break;
7541da177e4SLinus Torvalds 	}
755ab1f1611SVitaliy Gusev 	if (cfl) {
7569d6a8c5cSMarc Eshel 		__locks_copy_lock(fl, cfl);
757ab1f1611SVitaliy Gusev 		if (cfl->fl_nspid)
7586c5f3e7bSPavel Emelyanov 			fl->fl_pid = pid_vnr(cfl->fl_nspid);
759ab1f1611SVitaliy Gusev 	} else
760129a84deSJ. Bruce Fields 		fl->fl_type = F_UNLCK;
7611c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
7626d34ac19SJ. Bruce Fields 	return;
7631da177e4SLinus Torvalds }
7641da177e4SLinus Torvalds EXPORT_SYMBOL(posix_test_lock);
7651da177e4SLinus Torvalds 
766b533184fSJ. Bruce Fields /*
767b533184fSJ. Bruce Fields  * Deadlock detection:
7681da177e4SLinus Torvalds  *
769b533184fSJ. Bruce Fields  * We attempt to detect deadlocks that are due purely to posix file
770b533184fSJ. Bruce Fields  * locks.
7711da177e4SLinus Torvalds  *
772b533184fSJ. Bruce Fields  * We assume that a task can be waiting for at most one lock at a time.
773b533184fSJ. Bruce Fields  * So for any acquired lock, the process holding that lock may be
774b533184fSJ. Bruce Fields  * waiting on at most one other lock.  That lock in turns may be held by
775b533184fSJ. Bruce Fields  * someone waiting for at most one other lock.  Given a requested lock
776b533184fSJ. Bruce Fields  * caller_fl which is about to wait for a conflicting lock block_fl, we
777b533184fSJ. Bruce Fields  * follow this chain of waiters to ensure we are not about to create a
778b533184fSJ. Bruce Fields  * cycle.
77997855b49SJ. Bruce Fields  *
780b533184fSJ. Bruce Fields  * Since we do this before we ever put a process to sleep on a lock, we
781b533184fSJ. Bruce Fields  * are ensured that there is never a cycle; that is what guarantees that
782b533184fSJ. Bruce Fields  * the while() loop in posix_locks_deadlock() eventually completes.
783b533184fSJ. Bruce Fields  *
784b533184fSJ. Bruce Fields  * Note: the above assumption may not be true when handling lock
785b533184fSJ. Bruce Fields  * requests from a broken NFS client. It may also fail in the presence
786b533184fSJ. Bruce Fields  * of tasks (such as posix threads) sharing the same open file table.
787b533184fSJ. Bruce Fields  *
788b533184fSJ. Bruce Fields  * To handle those cases, we just bail out after a few iterations.
7891da177e4SLinus Torvalds  */
79097855b49SJ. Bruce Fields 
79197855b49SJ. Bruce Fields #define MAX_DEADLK_ITERATIONS 10
79297855b49SJ. Bruce Fields 
793b533184fSJ. Bruce Fields /* Find a lock that the owner of the given block_fl is blocking on. */
794b533184fSJ. Bruce Fields static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
795b533184fSJ. Bruce Fields {
796b533184fSJ. Bruce Fields 	struct file_lock *fl;
797b533184fSJ. Bruce Fields 
7983999e493SJeff Layton 	hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
799b533184fSJ. Bruce Fields 		if (posix_same_owner(fl, block_fl))
800b533184fSJ. Bruce Fields 			return fl->fl_next;
801b533184fSJ. Bruce Fields 	}
802b533184fSJ. Bruce Fields 	return NULL;
803b533184fSJ. Bruce Fields }
804b533184fSJ. Bruce Fields 
8057b2296afSJeff Layton /* Must be called with the blocked_lock_lock held! */
806b0904e14SAdrian Bunk static int posix_locks_deadlock(struct file_lock *caller_fl,
8071da177e4SLinus Torvalds 				struct file_lock *block_fl)
8081da177e4SLinus Torvalds {
80997855b49SJ. Bruce Fields 	int i = 0;
8101da177e4SLinus Torvalds 
811b533184fSJ. Bruce Fields 	while ((block_fl = what_owner_is_waiting_for(block_fl))) {
81297855b49SJ. Bruce Fields 		if (i++ > MAX_DEADLK_ITERATIONS)
81397855b49SJ. Bruce Fields 			return 0;
814b533184fSJ. Bruce Fields 		if (posix_same_owner(caller_fl, block_fl))
815b533184fSJ. Bruce Fields 			return 1;
8161da177e4SLinus Torvalds 	}
8171da177e4SLinus Torvalds 	return 0;
8181da177e4SLinus Torvalds }
8191da177e4SLinus Torvalds 
8201da177e4SLinus Torvalds /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
82102888f41SJ. Bruce Fields  * after any leases, but before any posix locks.
822f475ae95STrond Myklebust  *
823f475ae95STrond Myklebust  * Note that if called with an FL_EXISTS argument, the caller may determine
824f475ae95STrond Myklebust  * whether or not a lock was successfully freed by testing the return
825f475ae95STrond Myklebust  * value for -ENOENT.
8261da177e4SLinus Torvalds  */
827993dfa87STrond Myklebust static int flock_lock_file(struct file *filp, struct file_lock *request)
8281da177e4SLinus Torvalds {
829993dfa87STrond Myklebust 	struct file_lock *new_fl = NULL;
8301da177e4SLinus Torvalds 	struct file_lock **before;
831496ad9aaSAl Viro 	struct inode * inode = file_inode(filp);
8321da177e4SLinus Torvalds 	int error = 0;
8331da177e4SLinus Torvalds 	int found = 0;
8341da177e4SLinus Torvalds 
835b89f4321SArnd Bergmann 	if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
836b89f4321SArnd Bergmann 		new_fl = locks_alloc_lock();
837b89f4321SArnd Bergmann 		if (!new_fl)
838b89f4321SArnd Bergmann 			return -ENOMEM;
839b89f4321SArnd Bergmann 	}
840b89f4321SArnd Bergmann 
8411c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
842f07f18ddSTrond Myklebust 	if (request->fl_flags & FL_ACCESS)
843f07f18ddSTrond Myklebust 		goto find_conflict;
84484d535adSPavel Emelyanov 
8451da177e4SLinus Torvalds 	for_each_lock(inode, before) {
8461da177e4SLinus Torvalds 		struct file_lock *fl = *before;
8471da177e4SLinus Torvalds 		if (IS_POSIX(fl))
8481da177e4SLinus Torvalds 			break;
8491da177e4SLinus Torvalds 		if (IS_LEASE(fl))
8501da177e4SLinus Torvalds 			continue;
8511da177e4SLinus Torvalds 		if (filp != fl->fl_file)
8521da177e4SLinus Torvalds 			continue;
853993dfa87STrond Myklebust 		if (request->fl_type == fl->fl_type)
8541da177e4SLinus Torvalds 			goto out;
8551da177e4SLinus Torvalds 		found = 1;
8561da177e4SLinus Torvalds 		locks_delete_lock(before);
8571da177e4SLinus Torvalds 		break;
8581da177e4SLinus Torvalds 	}
8591da177e4SLinus Torvalds 
860f475ae95STrond Myklebust 	if (request->fl_type == F_UNLCK) {
861f475ae95STrond Myklebust 		if ((request->fl_flags & FL_EXISTS) && !found)
862f475ae95STrond Myklebust 			error = -ENOENT;
863993dfa87STrond Myklebust 		goto out;
864f475ae95STrond Myklebust 	}
8651da177e4SLinus Torvalds 
8661da177e4SLinus Torvalds 	/*
8671da177e4SLinus Torvalds 	 * If a higher-priority process was blocked on the old file lock,
8681da177e4SLinus Torvalds 	 * give it the opportunity to lock the file.
8691da177e4SLinus Torvalds 	 */
870b89f4321SArnd Bergmann 	if (found) {
8711c8c601aSJeff Layton 		spin_unlock(&inode->i_lock);
872def01bc5SFrederic Weisbecker 		cond_resched();
8731c8c601aSJeff Layton 		spin_lock(&inode->i_lock);
874b89f4321SArnd Bergmann 	}
8751da177e4SLinus Torvalds 
876f07f18ddSTrond Myklebust find_conflict:
8771da177e4SLinus Torvalds 	for_each_lock(inode, before) {
8781da177e4SLinus Torvalds 		struct file_lock *fl = *before;
8791da177e4SLinus Torvalds 		if (IS_POSIX(fl))
8801da177e4SLinus Torvalds 			break;
8811da177e4SLinus Torvalds 		if (IS_LEASE(fl))
8821da177e4SLinus Torvalds 			continue;
883993dfa87STrond Myklebust 		if (!flock_locks_conflict(request, fl))
8841da177e4SLinus Torvalds 			continue;
8851da177e4SLinus Torvalds 		error = -EAGAIN;
886bde74e4bSMiklos Szeredi 		if (!(request->fl_flags & FL_SLEEP))
887bde74e4bSMiklos Szeredi 			goto out;
888bde74e4bSMiklos Szeredi 		error = FILE_LOCK_DEFERRED;
889993dfa87STrond Myklebust 		locks_insert_block(fl, request);
8901da177e4SLinus Torvalds 		goto out;
8911da177e4SLinus Torvalds 	}
892f07f18ddSTrond Myklebust 	if (request->fl_flags & FL_ACCESS)
893f07f18ddSTrond Myklebust 		goto out;
894993dfa87STrond Myklebust 	locks_copy_lock(new_fl, request);
8950e2f6db8SPavel Emelyanov 	locks_insert_lock(before, new_fl);
896993dfa87STrond Myklebust 	new_fl = NULL;
8979cedc194SKirill Korotaev 	error = 0;
8981da177e4SLinus Torvalds 
8991da177e4SLinus Torvalds out:
9001c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
901993dfa87STrond Myklebust 	if (new_fl)
902993dfa87STrond Myklebust 		locks_free_lock(new_fl);
9031da177e4SLinus Torvalds 	return error;
9041da177e4SLinus Torvalds }
9051da177e4SLinus Torvalds 
906150b3934SMarc Eshel static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
9071da177e4SLinus Torvalds {
9081da177e4SLinus Torvalds 	struct file_lock *fl;
90939005d02SMiklos Szeredi 	struct file_lock *new_fl = NULL;
91039005d02SMiklos Szeredi 	struct file_lock *new_fl2 = NULL;
9111da177e4SLinus Torvalds 	struct file_lock *left = NULL;
9121da177e4SLinus Torvalds 	struct file_lock *right = NULL;
9131da177e4SLinus Torvalds 	struct file_lock **before;
914b9746ef8SJeff Layton 	int error;
915b9746ef8SJeff Layton 	bool added = false;
9161da177e4SLinus Torvalds 
9171da177e4SLinus Torvalds 	/*
9181da177e4SLinus Torvalds 	 * We may need two file_lock structures for this operation,
9191da177e4SLinus Torvalds 	 * so we get them in advance to avoid races.
92039005d02SMiklos Szeredi 	 *
92139005d02SMiklos Szeredi 	 * In some cases we can be sure, that no new locks will be needed
9221da177e4SLinus Torvalds 	 */
92339005d02SMiklos Szeredi 	if (!(request->fl_flags & FL_ACCESS) &&
92439005d02SMiklos Szeredi 	    (request->fl_type != F_UNLCK ||
92539005d02SMiklos Szeredi 	     request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
9261da177e4SLinus Torvalds 		new_fl = locks_alloc_lock();
9271da177e4SLinus Torvalds 		new_fl2 = locks_alloc_lock();
92839005d02SMiklos Szeredi 	}
9291da177e4SLinus Torvalds 
9301c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
9311cb36012SJeff Layton 	/*
9321cb36012SJeff Layton 	 * New lock request. Walk all POSIX locks and look for conflicts. If
9331cb36012SJeff Layton 	 * there are any, either return error or put the request on the
93448f74186SJeff Layton 	 * blocker's list of waiters and the global blocked_hash.
9351cb36012SJeff Layton 	 */
9361da177e4SLinus Torvalds 	if (request->fl_type != F_UNLCK) {
9371da177e4SLinus Torvalds 		for_each_lock(inode, before) {
938526985b9SJ. Bruce Fields 			fl = *before;
9391da177e4SLinus Torvalds 			if (!IS_POSIX(fl))
9401da177e4SLinus Torvalds 				continue;
9411da177e4SLinus Torvalds 			if (!posix_locks_conflict(request, fl))
9421da177e4SLinus Torvalds 				continue;
9435842add2SAndy Adamson 			if (conflock)
9441a747ee0SJ. Bruce Fields 				__locks_copy_lock(conflock, fl);
9451da177e4SLinus Torvalds 			error = -EAGAIN;
9461da177e4SLinus Torvalds 			if (!(request->fl_flags & FL_SLEEP))
9471da177e4SLinus Torvalds 				goto out;
9481c8c601aSJeff Layton 			/*
9491c8c601aSJeff Layton 			 * Deadlock detection and insertion into the blocked
9501c8c601aSJeff Layton 			 * locks list must be done while holding the same lock!
9511c8c601aSJeff Layton 			 */
9521da177e4SLinus Torvalds 			error = -EDEADLK;
9537b2296afSJeff Layton 			spin_lock(&blocked_lock_lock);
9541c8c601aSJeff Layton 			if (likely(!posix_locks_deadlock(request, fl))) {
955bde74e4bSMiklos Szeredi 				error = FILE_LOCK_DEFERRED;
9561c8c601aSJeff Layton 				__locks_insert_block(fl, request);
9571c8c601aSJeff Layton 			}
9587b2296afSJeff Layton 			spin_unlock(&blocked_lock_lock);
9591da177e4SLinus Torvalds 			goto out;
9601da177e4SLinus Torvalds   		}
9611da177e4SLinus Torvalds   	}
9621da177e4SLinus Torvalds 
9631da177e4SLinus Torvalds 	/* If we're just looking for a conflict, we're done. */
9641da177e4SLinus Torvalds 	error = 0;
9651da177e4SLinus Torvalds 	if (request->fl_flags & FL_ACCESS)
9661da177e4SLinus Torvalds 		goto out;
9671da177e4SLinus Torvalds 
9681da177e4SLinus Torvalds 	/*
9691da177e4SLinus Torvalds 	 * Find the first old lock with the same owner as the new lock.
9701da177e4SLinus Torvalds 	 */
9711da177e4SLinus Torvalds 
9721da177e4SLinus Torvalds 	before = &inode->i_flock;
9731da177e4SLinus Torvalds 
9741da177e4SLinus Torvalds 	/* First skip locks owned by other processes.  */
9751da177e4SLinus Torvalds 	while ((fl = *before) && (!IS_POSIX(fl) ||
9761da177e4SLinus Torvalds 				  !posix_same_owner(request, fl))) {
9771da177e4SLinus Torvalds 		before = &fl->fl_next;
9781da177e4SLinus Torvalds 	}
9791da177e4SLinus Torvalds 
9801da177e4SLinus Torvalds 	/* Process locks with this owner. */
9811da177e4SLinus Torvalds 	while ((fl = *before) && posix_same_owner(request, fl)) {
9821da177e4SLinus Torvalds 		/* Detect adjacent or overlapping regions (if same lock type)
9831da177e4SLinus Torvalds 		 */
9841da177e4SLinus Torvalds 		if (request->fl_type == fl->fl_type) {
985449231d6SOlaf Kirch 			/* In all comparisons of start vs end, use
986449231d6SOlaf Kirch 			 * "start - 1" rather than "end + 1". If end
987449231d6SOlaf Kirch 			 * is OFFSET_MAX, end + 1 will become negative.
988449231d6SOlaf Kirch 			 */
9891da177e4SLinus Torvalds 			if (fl->fl_end < request->fl_start - 1)
9901da177e4SLinus Torvalds 				goto next_lock;
9911da177e4SLinus Torvalds 			/* If the next lock in the list has entirely bigger
9921da177e4SLinus Torvalds 			 * addresses than the new one, insert the lock here.
9931da177e4SLinus Torvalds 			 */
994449231d6SOlaf Kirch 			if (fl->fl_start - 1 > request->fl_end)
9951da177e4SLinus Torvalds 				break;
9961da177e4SLinus Torvalds 
9971da177e4SLinus Torvalds 			/* If we come here, the new and old lock are of the
9981da177e4SLinus Torvalds 			 * same type and adjacent or overlapping. Make one
9991da177e4SLinus Torvalds 			 * lock yielding from the lower start address of both
10001da177e4SLinus Torvalds 			 * locks to the higher end address.
10011da177e4SLinus Torvalds 			 */
10021da177e4SLinus Torvalds 			if (fl->fl_start > request->fl_start)
10031da177e4SLinus Torvalds 				fl->fl_start = request->fl_start;
10041da177e4SLinus Torvalds 			else
10051da177e4SLinus Torvalds 				request->fl_start = fl->fl_start;
10061da177e4SLinus Torvalds 			if (fl->fl_end < request->fl_end)
10071da177e4SLinus Torvalds 				fl->fl_end = request->fl_end;
10081da177e4SLinus Torvalds 			else
10091da177e4SLinus Torvalds 				request->fl_end = fl->fl_end;
10101da177e4SLinus Torvalds 			if (added) {
10111da177e4SLinus Torvalds 				locks_delete_lock(before);
10121da177e4SLinus Torvalds 				continue;
10131da177e4SLinus Torvalds 			}
10141da177e4SLinus Torvalds 			request = fl;
1015b9746ef8SJeff Layton 			added = true;
10161da177e4SLinus Torvalds 		}
10171da177e4SLinus Torvalds 		else {
10181da177e4SLinus Torvalds 			/* Processing for different lock types is a bit
10191da177e4SLinus Torvalds 			 * more complex.
10201da177e4SLinus Torvalds 			 */
10211da177e4SLinus Torvalds 			if (fl->fl_end < request->fl_start)
10221da177e4SLinus Torvalds 				goto next_lock;
10231da177e4SLinus Torvalds 			if (fl->fl_start > request->fl_end)
10241da177e4SLinus Torvalds 				break;
10251da177e4SLinus Torvalds 			if (request->fl_type == F_UNLCK)
1026b9746ef8SJeff Layton 				added = true;
10271da177e4SLinus Torvalds 			if (fl->fl_start < request->fl_start)
10281da177e4SLinus Torvalds 				left = fl;
10291da177e4SLinus Torvalds 			/* If the next lock in the list has a higher end
10301da177e4SLinus Torvalds 			 * address than the new one, insert the new one here.
10311da177e4SLinus Torvalds 			 */
10321da177e4SLinus Torvalds 			if (fl->fl_end > request->fl_end) {
10331da177e4SLinus Torvalds 				right = fl;
10341da177e4SLinus Torvalds 				break;
10351da177e4SLinus Torvalds 			}
10361da177e4SLinus Torvalds 			if (fl->fl_start >= request->fl_start) {
10371da177e4SLinus Torvalds 				/* The new lock completely replaces an old
10381da177e4SLinus Torvalds 				 * one (This may happen several times).
10391da177e4SLinus Torvalds 				 */
10401da177e4SLinus Torvalds 				if (added) {
10411da177e4SLinus Torvalds 					locks_delete_lock(before);
10421da177e4SLinus Torvalds 					continue;
10431da177e4SLinus Torvalds 				}
10441da177e4SLinus Torvalds 				/* Replace the old lock with the new one.
10451da177e4SLinus Torvalds 				 * Wake up anybody waiting for the old one,
10461da177e4SLinus Torvalds 				 * as the change in lock type might satisfy
10471da177e4SLinus Torvalds 				 * their needs.
10481da177e4SLinus Torvalds 				 */
10491da177e4SLinus Torvalds 				locks_wake_up_blocks(fl);
10501da177e4SLinus Torvalds 				fl->fl_start = request->fl_start;
10511da177e4SLinus Torvalds 				fl->fl_end = request->fl_end;
10521da177e4SLinus Torvalds 				fl->fl_type = request->fl_type;
105347831f35STrond Myklebust 				locks_release_private(fl);
105447831f35STrond Myklebust 				locks_copy_private(fl, request);
10551da177e4SLinus Torvalds 				request = fl;
1056b9746ef8SJeff Layton 				added = true;
10571da177e4SLinus Torvalds 			}
10581da177e4SLinus Torvalds 		}
10591da177e4SLinus Torvalds 		/* Go on to next lock.
10601da177e4SLinus Torvalds 		 */
10611da177e4SLinus Torvalds 	next_lock:
10621da177e4SLinus Torvalds 		before = &fl->fl_next;
10631da177e4SLinus Torvalds 	}
10641da177e4SLinus Torvalds 
10650d9a490aSMiklos Szeredi 	/*
10661cb36012SJeff Layton 	 * The above code only modifies existing locks in case of merging or
10671cb36012SJeff Layton 	 * replacing. If new lock(s) need to be inserted all modifications are
10681cb36012SJeff Layton 	 * done below this, so it's safe yet to bail out.
10690d9a490aSMiklos Szeredi 	 */
10700d9a490aSMiklos Szeredi 	error = -ENOLCK; /* "no luck" */
10710d9a490aSMiklos Szeredi 	if (right && left == right && !new_fl2)
10720d9a490aSMiklos Szeredi 		goto out;
10730d9a490aSMiklos Szeredi 
10741da177e4SLinus Torvalds 	error = 0;
10751da177e4SLinus Torvalds 	if (!added) {
1076f475ae95STrond Myklebust 		if (request->fl_type == F_UNLCK) {
1077f475ae95STrond Myklebust 			if (request->fl_flags & FL_EXISTS)
1078f475ae95STrond Myklebust 				error = -ENOENT;
10791da177e4SLinus Torvalds 			goto out;
1080f475ae95STrond Myklebust 		}
10810d9a490aSMiklos Szeredi 
10820d9a490aSMiklos Szeredi 		if (!new_fl) {
10830d9a490aSMiklos Szeredi 			error = -ENOLCK;
10840d9a490aSMiklos Szeredi 			goto out;
10850d9a490aSMiklos Szeredi 		}
10861da177e4SLinus Torvalds 		locks_copy_lock(new_fl, request);
10871da177e4SLinus Torvalds 		locks_insert_lock(before, new_fl);
10881da177e4SLinus Torvalds 		new_fl = NULL;
10891da177e4SLinus Torvalds 	}
10901da177e4SLinus Torvalds 	if (right) {
10911da177e4SLinus Torvalds 		if (left == right) {
10921da177e4SLinus Torvalds 			/* The new lock breaks the old one in two pieces,
10931da177e4SLinus Torvalds 			 * so we have to use the second new lock.
10941da177e4SLinus Torvalds 			 */
10951da177e4SLinus Torvalds 			left = new_fl2;
10961da177e4SLinus Torvalds 			new_fl2 = NULL;
10971da177e4SLinus Torvalds 			locks_copy_lock(left, right);
10981da177e4SLinus Torvalds 			locks_insert_lock(before, left);
10991da177e4SLinus Torvalds 		}
11001da177e4SLinus Torvalds 		right->fl_start = request->fl_end + 1;
11011da177e4SLinus Torvalds 		locks_wake_up_blocks(right);
11021da177e4SLinus Torvalds 	}
11031da177e4SLinus Torvalds 	if (left) {
11041da177e4SLinus Torvalds 		left->fl_end = request->fl_start - 1;
11051da177e4SLinus Torvalds 		locks_wake_up_blocks(left);
11061da177e4SLinus Torvalds 	}
11071da177e4SLinus Torvalds  out:
11081c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
11091da177e4SLinus Torvalds 	/*
11101da177e4SLinus Torvalds 	 * Free any unused locks.
11111da177e4SLinus Torvalds 	 */
11121da177e4SLinus Torvalds 	if (new_fl)
11131da177e4SLinus Torvalds 		locks_free_lock(new_fl);
11141da177e4SLinus Torvalds 	if (new_fl2)
11151da177e4SLinus Torvalds 		locks_free_lock(new_fl2);
11161da177e4SLinus Torvalds 	return error;
11171da177e4SLinus Torvalds }
11181da177e4SLinus Torvalds 
11191da177e4SLinus Torvalds /**
11201da177e4SLinus Torvalds  * posix_lock_file - Apply a POSIX-style lock to a file
11211da177e4SLinus Torvalds  * @filp: The file to apply the lock to
11221da177e4SLinus Torvalds  * @fl: The lock to be applied
1123150b3934SMarc Eshel  * @conflock: Place to return a copy of the conflicting lock, if found.
11241da177e4SLinus Torvalds  *
11251da177e4SLinus Torvalds  * Add a POSIX style lock to a file.
11261da177e4SLinus Torvalds  * We merge adjacent & overlapping locks whenever possible.
11271da177e4SLinus Torvalds  * POSIX locks are sorted by owner task, then by starting address
1128f475ae95STrond Myklebust  *
1129f475ae95STrond Myklebust  * Note that if called with an FL_EXISTS argument, the caller may determine
1130f475ae95STrond Myklebust  * whether or not a lock was successfully freed by testing the return
1131f475ae95STrond Myklebust  * value for -ENOENT.
11321da177e4SLinus Torvalds  */
1133150b3934SMarc Eshel int posix_lock_file(struct file *filp, struct file_lock *fl,
11345842add2SAndy Adamson 			struct file_lock *conflock)
11355842add2SAndy Adamson {
1136496ad9aaSAl Viro 	return __posix_lock_file(file_inode(filp), fl, conflock);
11375842add2SAndy Adamson }
1138150b3934SMarc Eshel EXPORT_SYMBOL(posix_lock_file);
11391da177e4SLinus Torvalds 
11401da177e4SLinus Torvalds /**
11411da177e4SLinus Torvalds  * posix_lock_file_wait - Apply a POSIX-style lock to a file
11421da177e4SLinus Torvalds  * @filp: The file to apply the lock to
11431da177e4SLinus Torvalds  * @fl: The lock to be applied
11441da177e4SLinus Torvalds  *
11451da177e4SLinus Torvalds  * Add a POSIX style lock to a file.
11461da177e4SLinus Torvalds  * We merge adjacent & overlapping locks whenever possible.
11471da177e4SLinus Torvalds  * POSIX locks are sorted by owner task, then by starting address
11481da177e4SLinus Torvalds  */
11491da177e4SLinus Torvalds int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
11501da177e4SLinus Torvalds {
11511da177e4SLinus Torvalds 	int error;
11521da177e4SLinus Torvalds 	might_sleep ();
11531da177e4SLinus Torvalds 	for (;;) {
1154150b3934SMarc Eshel 		error = posix_lock_file(filp, fl, NULL);
1155bde74e4bSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
11561da177e4SLinus Torvalds 			break;
11571da177e4SLinus Torvalds 		error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
11581da177e4SLinus Torvalds 		if (!error)
11591da177e4SLinus Torvalds 			continue;
11601da177e4SLinus Torvalds 
11611da177e4SLinus Torvalds 		locks_delete_block(fl);
11621da177e4SLinus Torvalds 		break;
11631da177e4SLinus Torvalds 	}
11641da177e4SLinus Torvalds 	return error;
11651da177e4SLinus Torvalds }
11661da177e4SLinus Torvalds EXPORT_SYMBOL(posix_lock_file_wait);
11671da177e4SLinus Torvalds 
11681da177e4SLinus Torvalds /**
11691da177e4SLinus Torvalds  * locks_mandatory_locked - Check for an active lock
11701da177e4SLinus Torvalds  * @inode: the file to check
11711da177e4SLinus Torvalds  *
11721da177e4SLinus Torvalds  * Searches the inode's list of locks to find any POSIX locks which conflict.
11731da177e4SLinus Torvalds  * This function is called from locks_verify_locked() only.
11741da177e4SLinus Torvalds  */
11751da177e4SLinus Torvalds int locks_mandatory_locked(struct inode *inode)
11761da177e4SLinus Torvalds {
11771da177e4SLinus Torvalds 	fl_owner_t owner = current->files;
11781da177e4SLinus Torvalds 	struct file_lock *fl;
11791da177e4SLinus Torvalds 
11801da177e4SLinus Torvalds 	/*
11811da177e4SLinus Torvalds 	 * Search the lock list for this inode for any POSIX locks.
11821da177e4SLinus Torvalds 	 */
11831c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
11841da177e4SLinus Torvalds 	for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
11851da177e4SLinus Torvalds 		if (!IS_POSIX(fl))
11861da177e4SLinus Torvalds 			continue;
11871da177e4SLinus Torvalds 		if (fl->fl_owner != owner)
11881da177e4SLinus Torvalds 			break;
11891da177e4SLinus Torvalds 	}
11901c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
11911da177e4SLinus Torvalds 	return fl ? -EAGAIN : 0;
11921da177e4SLinus Torvalds }
11931da177e4SLinus Torvalds 
11941da177e4SLinus Torvalds /**
11951da177e4SLinus Torvalds  * locks_mandatory_area - Check for a conflicting lock
11961da177e4SLinus Torvalds  * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
11971da177e4SLinus Torvalds  *		for shared
11981da177e4SLinus Torvalds  * @inode:      the file to check
11991da177e4SLinus Torvalds  * @filp:       how the file was opened (if it was)
12001da177e4SLinus Torvalds  * @offset:     start of area to check
12011da177e4SLinus Torvalds  * @count:      length of area to check
12021da177e4SLinus Torvalds  *
12031da177e4SLinus Torvalds  * Searches the inode's list of locks to find any POSIX locks which conflict.
12041da177e4SLinus Torvalds  * This function is called from rw_verify_area() and
12051da177e4SLinus Torvalds  * locks_verify_truncate().
12061da177e4SLinus Torvalds  */
12071da177e4SLinus Torvalds int locks_mandatory_area(int read_write, struct inode *inode,
12081da177e4SLinus Torvalds 			 struct file *filp, loff_t offset,
12091da177e4SLinus Torvalds 			 size_t count)
12101da177e4SLinus Torvalds {
12111da177e4SLinus Torvalds 	struct file_lock fl;
12121da177e4SLinus Torvalds 	int error;
12131da177e4SLinus Torvalds 
12141da177e4SLinus Torvalds 	locks_init_lock(&fl);
12151da177e4SLinus Torvalds 	fl.fl_owner = current->files;
12161da177e4SLinus Torvalds 	fl.fl_pid = current->tgid;
12171da177e4SLinus Torvalds 	fl.fl_file = filp;
12181da177e4SLinus Torvalds 	fl.fl_flags = FL_POSIX | FL_ACCESS;
12191da177e4SLinus Torvalds 	if (filp && !(filp->f_flags & O_NONBLOCK))
12201da177e4SLinus Torvalds 		fl.fl_flags |= FL_SLEEP;
12211da177e4SLinus Torvalds 	fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
12221da177e4SLinus Torvalds 	fl.fl_start = offset;
12231da177e4SLinus Torvalds 	fl.fl_end = offset + count - 1;
12241da177e4SLinus Torvalds 
12251da177e4SLinus Torvalds 	for (;;) {
1226150b3934SMarc Eshel 		error = __posix_lock_file(inode, &fl, NULL);
1227bde74e4bSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
12281da177e4SLinus Torvalds 			break;
12291da177e4SLinus Torvalds 		error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
12301da177e4SLinus Torvalds 		if (!error) {
12311da177e4SLinus Torvalds 			/*
12321da177e4SLinus Torvalds 			 * If we've been sleeping someone might have
12331da177e4SLinus Torvalds 			 * changed the permissions behind our back.
12341da177e4SLinus Torvalds 			 */
1235a16877caSPavel Emelyanov 			if (__mandatory_lock(inode))
12361da177e4SLinus Torvalds 				continue;
12371da177e4SLinus Torvalds 		}
12381da177e4SLinus Torvalds 
12391da177e4SLinus Torvalds 		locks_delete_block(&fl);
12401da177e4SLinus Torvalds 		break;
12411da177e4SLinus Torvalds 	}
12421da177e4SLinus Torvalds 
12431da177e4SLinus Torvalds 	return error;
12441da177e4SLinus Torvalds }
12451da177e4SLinus Torvalds 
12461da177e4SLinus Torvalds EXPORT_SYMBOL(locks_mandatory_area);
12471da177e4SLinus Torvalds 
1248778fc546SJ. Bruce Fields static void lease_clear_pending(struct file_lock *fl, int arg)
1249778fc546SJ. Bruce Fields {
1250778fc546SJ. Bruce Fields 	switch (arg) {
1251778fc546SJ. Bruce Fields 	case F_UNLCK:
1252778fc546SJ. Bruce Fields 		fl->fl_flags &= ~FL_UNLOCK_PENDING;
1253778fc546SJ. Bruce Fields 		/* fall through: */
1254778fc546SJ. Bruce Fields 	case F_RDLCK:
1255778fc546SJ. Bruce Fields 		fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1256778fc546SJ. Bruce Fields 	}
1257778fc546SJ. Bruce Fields }
1258778fc546SJ. Bruce Fields 
12591da177e4SLinus Torvalds /* We already had a lease on this file; just change its type */
12601da177e4SLinus Torvalds int lease_modify(struct file_lock **before, int arg)
12611da177e4SLinus Torvalds {
12621da177e4SLinus Torvalds 	struct file_lock *fl = *before;
12631da177e4SLinus Torvalds 	int error = assign_type(fl, arg);
12641da177e4SLinus Torvalds 
12651da177e4SLinus Torvalds 	if (error)
12661da177e4SLinus Torvalds 		return error;
1267778fc546SJ. Bruce Fields 	lease_clear_pending(fl, arg);
12681da177e4SLinus Torvalds 	locks_wake_up_blocks(fl);
12693b6e2723SFilipe Brandenburger 	if (arg == F_UNLCK) {
12703b6e2723SFilipe Brandenburger 		struct file *filp = fl->fl_file;
12713b6e2723SFilipe Brandenburger 
12723b6e2723SFilipe Brandenburger 		f_delown(filp);
12733b6e2723SFilipe Brandenburger 		filp->f_owner.signum = 0;
127496d6d59cSJ. Bruce Fields 		fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
127596d6d59cSJ. Bruce Fields 		if (fl->fl_fasync != NULL) {
127696d6d59cSJ. Bruce Fields 			printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
127796d6d59cSJ. Bruce Fields 			fl->fl_fasync = NULL;
127896d6d59cSJ. Bruce Fields 		}
12791da177e4SLinus Torvalds 		locks_delete_lock(before);
12803b6e2723SFilipe Brandenburger 	}
12811da177e4SLinus Torvalds 	return 0;
12821da177e4SLinus Torvalds }
12831da177e4SLinus Torvalds 
12841da177e4SLinus Torvalds EXPORT_SYMBOL(lease_modify);
12851da177e4SLinus Torvalds 
1286778fc546SJ. Bruce Fields static bool past_time(unsigned long then)
1287778fc546SJ. Bruce Fields {
1288778fc546SJ. Bruce Fields 	if (!then)
1289778fc546SJ. Bruce Fields 		/* 0 is a special value meaning "this never expires": */
1290778fc546SJ. Bruce Fields 		return false;
1291778fc546SJ. Bruce Fields 	return time_after(jiffies, then);
1292778fc546SJ. Bruce Fields }
1293778fc546SJ. Bruce Fields 
12941da177e4SLinus Torvalds static void time_out_leases(struct inode *inode)
12951da177e4SLinus Torvalds {
12961da177e4SLinus Torvalds 	struct file_lock **before;
12971da177e4SLinus Torvalds 	struct file_lock *fl;
12981da177e4SLinus Torvalds 
12991da177e4SLinus Torvalds 	before = &inode->i_flock;
1300ab83fa4bSJ. Bruce Fields 	while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
1301778fc546SJ. Bruce Fields 		if (past_time(fl->fl_downgrade_time))
1302778fc546SJ. Bruce Fields 			lease_modify(before, F_RDLCK);
1303778fc546SJ. Bruce Fields 		if (past_time(fl->fl_break_time))
1304778fc546SJ. Bruce Fields 			lease_modify(before, F_UNLCK);
13051da177e4SLinus Torvalds 		if (fl == *before)	/* lease_modify may have freed fl */
13061da177e4SLinus Torvalds 			before = &fl->fl_next;
13071da177e4SLinus Torvalds 	}
13081da177e4SLinus Torvalds }
13091da177e4SLinus Torvalds 
1310df4e8d2cSJ. Bruce Fields static bool leases_conflict(struct file_lock *lease, struct file_lock *breaker)
1311df4e8d2cSJ. Bruce Fields {
1312df4e8d2cSJ. Bruce Fields 	if ((breaker->fl_flags & FL_DELEG) && (lease->fl_flags & FL_LEASE))
1313df4e8d2cSJ. Bruce Fields 		return false;
1314df4e8d2cSJ. Bruce Fields 	return locks_conflict(breaker, lease);
1315df4e8d2cSJ. Bruce Fields }
1316df4e8d2cSJ. Bruce Fields 
13171da177e4SLinus Torvalds /**
13181da177e4SLinus Torvalds  *	__break_lease	-	revoke all outstanding leases on file
13191da177e4SLinus Torvalds  *	@inode: the inode of the file to return
1320df4e8d2cSJ. Bruce Fields  *	@mode: O_RDONLY: break only write leases; O_WRONLY or O_RDWR:
1321df4e8d2cSJ. Bruce Fields  *	    break all leases
1322df4e8d2cSJ. Bruce Fields  *	@type: FL_LEASE: break leases and delegations; FL_DELEG: break
1323df4e8d2cSJ. Bruce Fields  *	    only delegations
13241da177e4SLinus Torvalds  *
132587250dd2Sdavid m. richter  *	break_lease (inlined for speed) has checked there already is at least
132687250dd2Sdavid m. richter  *	some kind of lock (maybe a lease) on this file.  Leases are broken on
132787250dd2Sdavid m. richter  *	a call to open() or truncate().  This function can sleep unless you
13281da177e4SLinus Torvalds  *	specified %O_NONBLOCK to your open().
13291da177e4SLinus Torvalds  */
1330df4e8d2cSJ. Bruce Fields int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
13311da177e4SLinus Torvalds {
1332778fc546SJ. Bruce Fields 	int error = 0;
13331da177e4SLinus Torvalds 	struct file_lock *new_fl, *flock;
13341da177e4SLinus Torvalds 	struct file_lock *fl;
13351da177e4SLinus Torvalds 	unsigned long break_time;
13361da177e4SLinus Torvalds 	int i_have_this_lease = 0;
1337df4e8d2cSJ. Bruce Fields 	bool lease_conflict = false;
13388737c930SAl Viro 	int want_write = (mode & O_ACCMODE) != O_RDONLY;
13391da177e4SLinus Torvalds 
13408737c930SAl Viro 	new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
13416d4b9e38SLinus Torvalds 	if (IS_ERR(new_fl))
13426d4b9e38SLinus Torvalds 		return PTR_ERR(new_fl);
1343df4e8d2cSJ. Bruce Fields 	new_fl->fl_flags = type;
13441da177e4SLinus Torvalds 
13451c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
13461da177e4SLinus Torvalds 
13471da177e4SLinus Torvalds 	time_out_leases(inode);
13481da177e4SLinus Torvalds 
13491da177e4SLinus Torvalds 	flock = inode->i_flock;
13501da177e4SLinus Torvalds 	if ((flock == NULL) || !IS_LEASE(flock))
13511da177e4SLinus Torvalds 		goto out;
13521da177e4SLinus Torvalds 
1353df4e8d2cSJ. Bruce Fields 	for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1354df4e8d2cSJ. Bruce Fields 		if (leases_conflict(fl, new_fl)) {
1355df4e8d2cSJ. Bruce Fields 			lease_conflict = true;
13561da177e4SLinus Torvalds 			if (fl->fl_owner == current->files)
13571da177e4SLinus Torvalds 				i_have_this_lease = 1;
1358df4e8d2cSJ. Bruce Fields 		}
1359df4e8d2cSJ. Bruce Fields 	}
1360df4e8d2cSJ. Bruce Fields 	if (!lease_conflict)
1361df4e8d2cSJ. Bruce Fields 		goto out;
13621da177e4SLinus Torvalds 
13631da177e4SLinus Torvalds 	break_time = 0;
13641da177e4SLinus Torvalds 	if (lease_break_time > 0) {
13651da177e4SLinus Torvalds 		break_time = jiffies + lease_break_time * HZ;
13661da177e4SLinus Torvalds 		if (break_time == 0)
13671da177e4SLinus Torvalds 			break_time++;	/* so that 0 means no break time */
13681da177e4SLinus Torvalds 	}
13691da177e4SLinus Torvalds 
13701da177e4SLinus Torvalds 	for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1371df4e8d2cSJ. Bruce Fields 		if (!leases_conflict(fl, new_fl))
1372df4e8d2cSJ. Bruce Fields 			continue;
1373778fc546SJ. Bruce Fields 		if (want_write) {
1374778fc546SJ. Bruce Fields 			if (fl->fl_flags & FL_UNLOCK_PENDING)
1375778fc546SJ. Bruce Fields 				continue;
1376778fc546SJ. Bruce Fields 			fl->fl_flags |= FL_UNLOCK_PENDING;
13771da177e4SLinus Torvalds 			fl->fl_break_time = break_time;
1378778fc546SJ. Bruce Fields 		} else {
1379778fc546SJ. Bruce Fields 			if (lease_breaking(flock))
1380778fc546SJ. Bruce Fields 				continue;
1381778fc546SJ. Bruce Fields 			fl->fl_flags |= FL_DOWNGRADE_PENDING;
1382778fc546SJ. Bruce Fields 			fl->fl_downgrade_time = break_time;
13831da177e4SLinus Torvalds 		}
1384778fc546SJ. Bruce Fields 		fl->fl_lmops->lm_break(fl);
13851da177e4SLinus Torvalds 	}
13861da177e4SLinus Torvalds 
13871da177e4SLinus Torvalds 	if (i_have_this_lease || (mode & O_NONBLOCK)) {
13881da177e4SLinus Torvalds 		error = -EWOULDBLOCK;
13891da177e4SLinus Torvalds 		goto out;
13901da177e4SLinus Torvalds 	}
13911da177e4SLinus Torvalds 
13921da177e4SLinus Torvalds restart:
13931da177e4SLinus Torvalds 	break_time = flock->fl_break_time;
13941da177e4SLinus Torvalds 	if (break_time != 0) {
13951da177e4SLinus Torvalds 		break_time -= jiffies;
13961da177e4SLinus Torvalds 		if (break_time == 0)
13971da177e4SLinus Torvalds 			break_time++;
13981da177e4SLinus Torvalds 	}
13994321e01eSMatthew Wilcox 	locks_insert_block(flock, new_fl);
14001c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
14014321e01eSMatthew Wilcox 	error = wait_event_interruptible_timeout(new_fl->fl_wait,
14024321e01eSMatthew Wilcox 						!new_fl->fl_next, break_time);
14031c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
14041c8c601aSJeff Layton 	locks_delete_block(new_fl);
14051da177e4SLinus Torvalds 	if (error >= 0) {
14061da177e4SLinus Torvalds 		if (error == 0)
14071da177e4SLinus Torvalds 			time_out_leases(inode);
1408778fc546SJ. Bruce Fields 		/*
1409778fc546SJ. Bruce Fields 		 * Wait for the next conflicting lease that has not been
1410778fc546SJ. Bruce Fields 		 * broken yet
1411778fc546SJ. Bruce Fields 		 */
14121da177e4SLinus Torvalds 		for (flock = inode->i_flock; flock && IS_LEASE(flock);
14131da177e4SLinus Torvalds 				flock = flock->fl_next) {
1414df4e8d2cSJ. Bruce Fields 			if (leases_conflict(new_fl, flock))
14151da177e4SLinus Torvalds 				goto restart;
14161da177e4SLinus Torvalds 		}
14171da177e4SLinus Torvalds 		error = 0;
14181da177e4SLinus Torvalds 	}
14191da177e4SLinus Torvalds 
14201da177e4SLinus Torvalds out:
14211c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
14221da177e4SLinus Torvalds 	locks_free_lock(new_fl);
14231da177e4SLinus Torvalds 	return error;
14241da177e4SLinus Torvalds }
14251da177e4SLinus Torvalds 
14261da177e4SLinus Torvalds EXPORT_SYMBOL(__break_lease);
14271da177e4SLinus Torvalds 
14281da177e4SLinus Torvalds /**
1429a6b91919SRandy Dunlap  *	lease_get_mtime - get the last modified time of an inode
14301da177e4SLinus Torvalds  *	@inode: the inode
14311da177e4SLinus Torvalds  *      @time:  pointer to a timespec which will contain the last modified time
14321da177e4SLinus Torvalds  *
14331da177e4SLinus Torvalds  * This is to force NFS clients to flush their caches for files with
14341da177e4SLinus Torvalds  * exclusive leases.  The justification is that if someone has an
1435a6b91919SRandy Dunlap  * exclusive lease, then they could be modifying it.
14361da177e4SLinus Torvalds  */
14371da177e4SLinus Torvalds void lease_get_mtime(struct inode *inode, struct timespec *time)
14381da177e4SLinus Torvalds {
14391da177e4SLinus Torvalds 	struct file_lock *flock = inode->i_flock;
14400ee5c6d6SJeff Layton 	if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
14411da177e4SLinus Torvalds 		*time = current_fs_time(inode->i_sb);
14421da177e4SLinus Torvalds 	else
14431da177e4SLinus Torvalds 		*time = inode->i_mtime;
14441da177e4SLinus Torvalds }
14451da177e4SLinus Torvalds 
14461da177e4SLinus Torvalds EXPORT_SYMBOL(lease_get_mtime);
14471da177e4SLinus Torvalds 
14481da177e4SLinus Torvalds /**
14491da177e4SLinus Torvalds  *	fcntl_getlease - Enquire what lease is currently active
14501da177e4SLinus Torvalds  *	@filp: the file
14511da177e4SLinus Torvalds  *
14521da177e4SLinus Torvalds  *	The value returned by this function will be one of
14531da177e4SLinus Torvalds  *	(if no lease break is pending):
14541da177e4SLinus Torvalds  *
14551da177e4SLinus Torvalds  *	%F_RDLCK to indicate a shared lease is held.
14561da177e4SLinus Torvalds  *
14571da177e4SLinus Torvalds  *	%F_WRLCK to indicate an exclusive lease is held.
14581da177e4SLinus Torvalds  *
14591da177e4SLinus Torvalds  *	%F_UNLCK to indicate no lease is held.
14601da177e4SLinus Torvalds  *
14611da177e4SLinus Torvalds  *	(if a lease break is pending):
14621da177e4SLinus Torvalds  *
14631da177e4SLinus Torvalds  *	%F_RDLCK to indicate an exclusive lease needs to be
14641da177e4SLinus Torvalds  *		changed to a shared lease (or removed).
14651da177e4SLinus Torvalds  *
14661da177e4SLinus Torvalds  *	%F_UNLCK to indicate the lease needs to be removed.
14671da177e4SLinus Torvalds  *
14681da177e4SLinus Torvalds  *	XXX: sfr & willy disagree over whether F_INPROGRESS
14691da177e4SLinus Torvalds  *	should be returned to userspace.
14701da177e4SLinus Torvalds  */
14711da177e4SLinus Torvalds int fcntl_getlease(struct file *filp)
14721da177e4SLinus Torvalds {
14731da177e4SLinus Torvalds 	struct file_lock *fl;
14741c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
14751da177e4SLinus Torvalds 	int type = F_UNLCK;
14761da177e4SLinus Torvalds 
14771c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
1478496ad9aaSAl Viro 	time_out_leases(file_inode(filp));
1479496ad9aaSAl Viro 	for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
14801da177e4SLinus Torvalds 			fl = fl->fl_next) {
14811da177e4SLinus Torvalds 		if (fl->fl_file == filp) {
1482778fc546SJ. Bruce Fields 			type = target_leasetype(fl);
14831da177e4SLinus Torvalds 			break;
14841da177e4SLinus Torvalds 		}
14851da177e4SLinus Torvalds 	}
14861c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
14871da177e4SLinus Torvalds 	return type;
14881da177e4SLinus Torvalds }
14891da177e4SLinus Torvalds 
149024cbe784SJeff Layton /**
149124cbe784SJeff Layton  * check_conflicting_open - see if the given dentry points to a file that has
149224cbe784SJeff Layton  * 			    an existing open that would conflict with the
149324cbe784SJeff Layton  * 			    desired lease.
149424cbe784SJeff Layton  * @dentry:	dentry to check
149524cbe784SJeff Layton  * @arg:	type of lease that we're trying to acquire
149624cbe784SJeff Layton  *
149724cbe784SJeff Layton  * Check to see if there's an existing open fd on this file that would
149824cbe784SJeff Layton  * conflict with the lease we're trying to set.
149924cbe784SJeff Layton  */
150024cbe784SJeff Layton static int
150124cbe784SJeff Layton check_conflicting_open(const struct dentry *dentry, const long arg)
150224cbe784SJeff Layton {
150324cbe784SJeff Layton 	int ret = 0;
150424cbe784SJeff Layton 	struct inode *inode = dentry->d_inode;
150524cbe784SJeff Layton 
150624cbe784SJeff Layton 	if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
150724cbe784SJeff Layton 		return -EAGAIN;
150824cbe784SJeff Layton 
150924cbe784SJeff Layton 	if ((arg == F_WRLCK) && ((d_count(dentry) > 1) ||
151024cbe784SJeff Layton 	    (atomic_read(&inode->i_count) > 1)))
151124cbe784SJeff Layton 		ret = -EAGAIN;
151224cbe784SJeff Layton 
151324cbe784SJeff Layton 	return ret;
151424cbe784SJeff Layton }
151524cbe784SJeff Layton 
1516d4f22d19SJeff Layton static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
15171da177e4SLinus Torvalds {
15187eaae282SKAMBAROV, ZAUR 	struct file_lock *fl, **before, **my_before = NULL, *lease;
15190f7fc9e4SJosef "Jeff" Sipek 	struct dentry *dentry = filp->f_path.dentry;
15201da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
1521df4e8d2cSJ. Bruce Fields 	bool is_deleg = (*flp)->fl_flags & FL_DELEG;
1522c1f24ef4SJ. Bruce Fields 	int error;
15231da177e4SLinus Torvalds 
1524096657b6SJ. Bruce Fields 	lease = *flp;
1525df4e8d2cSJ. Bruce Fields 	/*
1526df4e8d2cSJ. Bruce Fields 	 * In the delegation case we need mutual exclusion with
1527df4e8d2cSJ. Bruce Fields 	 * a number of operations that take the i_mutex.  We trylock
1528df4e8d2cSJ. Bruce Fields 	 * because delegations are an optional optimization, and if
1529df4e8d2cSJ. Bruce Fields 	 * there's some chance of a conflict--we'd rather not
1530df4e8d2cSJ. Bruce Fields 	 * bother, maybe that's a sign this just isn't a good file to
1531df4e8d2cSJ. Bruce Fields 	 * hand out a delegation on.
1532df4e8d2cSJ. Bruce Fields 	 */
1533df4e8d2cSJ. Bruce Fields 	if (is_deleg && !mutex_trylock(&inode->i_mutex))
1534df4e8d2cSJ. Bruce Fields 		return -EAGAIN;
1535df4e8d2cSJ. Bruce Fields 
1536df4e8d2cSJ. Bruce Fields 	if (is_deleg && arg == F_WRLCK) {
1537df4e8d2cSJ. Bruce Fields 		/* Write delegations are not currently supported: */
15384fdb793fSDan Carpenter 		mutex_unlock(&inode->i_mutex);
1539df4e8d2cSJ. Bruce Fields 		WARN_ON_ONCE(1);
1540df4e8d2cSJ. Bruce Fields 		return -EINVAL;
1541df4e8d2cSJ. Bruce Fields 	}
1542096657b6SJ. Bruce Fields 
154324cbe784SJeff Layton 	error = check_conflicting_open(dentry, arg);
154424cbe784SJeff Layton 	if (error)
15451da177e4SLinus Torvalds 		goto out;
154685c59580SPavel Emelyanov 
15471da177e4SLinus Torvalds 	/*
15481da177e4SLinus Torvalds 	 * At this point, we know that if there is an exclusive
15491da177e4SLinus Torvalds 	 * lease on this file, then we hold it on this filp
15501da177e4SLinus Torvalds 	 * (otherwise our open of this file would have blocked).
15511da177e4SLinus Torvalds 	 * And if we are trying to acquire an exclusive lease,
15521da177e4SLinus Torvalds 	 * then the file is not open by anyone (including us)
15531da177e4SLinus Torvalds 	 * except for this filp.
15541da177e4SLinus Torvalds 	 */
1555c1f24ef4SJ. Bruce Fields 	error = -EAGAIN;
15561da177e4SLinus Torvalds 	for (before = &inode->i_flock;
15571da177e4SLinus Torvalds 			((fl = *before) != NULL) && IS_LEASE(fl);
15581da177e4SLinus Torvalds 			before = &fl->fl_next) {
1559c1f24ef4SJ. Bruce Fields 		if (fl->fl_file == filp) {
15601da177e4SLinus Torvalds 			my_before = before;
1561c1f24ef4SJ. Bruce Fields 			continue;
15621da177e4SLinus Torvalds 		}
1563c1f24ef4SJ. Bruce Fields 		/*
1564c1f24ef4SJ. Bruce Fields 		 * No exclusive leases if someone else has a lease on
1565c1f24ef4SJ. Bruce Fields 		 * this file:
1566c1f24ef4SJ. Bruce Fields 		 */
1567c1f24ef4SJ. Bruce Fields 		if (arg == F_WRLCK)
15681da177e4SLinus Torvalds 			goto out;
1569c1f24ef4SJ. Bruce Fields 		/*
1570c1f24ef4SJ. Bruce Fields 		 * Modifying our existing lease is OK, but no getting a
1571c1f24ef4SJ. Bruce Fields 		 * new lease if someone else is opening for write:
1572c1f24ef4SJ. Bruce Fields 		 */
1573c1f24ef4SJ. Bruce Fields 		if (fl->fl_flags & FL_UNLOCK_PENDING)
1574c1f24ef4SJ. Bruce Fields 			goto out;
1575c1f24ef4SJ. Bruce Fields 	}
15761da177e4SLinus Torvalds 
15771da177e4SLinus Torvalds 	if (my_before != NULL) {
15788fb47a4fSJ. Bruce Fields 		error = lease->fl_lmops->lm_change(my_before, arg);
157951ee4b84SChristoph Hellwig 		if (!error)
158051ee4b84SChristoph Hellwig 			*flp = *my_before;
15811da177e4SLinus Torvalds 		goto out;
15821da177e4SLinus Torvalds 	}
15831da177e4SLinus Torvalds 
15841da177e4SLinus Torvalds 	error = -EINVAL;
15851da177e4SLinus Torvalds 	if (!leases_enable)
15861da177e4SLinus Torvalds 		goto out;
15871da177e4SLinus Torvalds 
1588c5b1f0d9SArnd Bergmann 	locks_insert_lock(before, lease);
158924cbe784SJeff Layton 	/*
159024cbe784SJeff Layton 	 * The check in break_lease() is lockless. It's possible for another
159124cbe784SJeff Layton 	 * open to race in after we did the earlier check for a conflicting
159224cbe784SJeff Layton 	 * open but before the lease was inserted. Check again for a
159324cbe784SJeff Layton 	 * conflicting open and cancel the lease if there is one.
159424cbe784SJeff Layton 	 *
159524cbe784SJeff Layton 	 * We also add a barrier here to ensure that the insertion of the lock
159624cbe784SJeff Layton 	 * precedes these checks.
159724cbe784SJeff Layton 	 */
159824cbe784SJeff Layton 	smp_mb();
159924cbe784SJeff Layton 	error = check_conflicting_open(dentry, arg);
160024cbe784SJeff Layton 	if (error)
160124cbe784SJeff Layton 		locks_unlink_lock(flp);
16021da177e4SLinus Torvalds out:
1603df4e8d2cSJ. Bruce Fields 	if (is_deleg)
1604df4e8d2cSJ. Bruce Fields 		mutex_unlock(&inode->i_mutex);
16051da177e4SLinus Torvalds 	return error;
16061da177e4SLinus Torvalds }
16078335ebd9SJ. Bruce Fields 
1608d4f22d19SJeff Layton static int generic_delete_lease(struct file *filp, struct file_lock **flp)
16098335ebd9SJ. Bruce Fields {
16108335ebd9SJ. Bruce Fields 	struct file_lock *fl, **before;
16118335ebd9SJ. Bruce Fields 	struct dentry *dentry = filp->f_path.dentry;
16128335ebd9SJ. Bruce Fields 	struct inode *inode = dentry->d_inode;
16138335ebd9SJ. Bruce Fields 
16148335ebd9SJ. Bruce Fields 	for (before = &inode->i_flock;
16158335ebd9SJ. Bruce Fields 			((fl = *before) != NULL) && IS_LEASE(fl);
16168335ebd9SJ. Bruce Fields 			before = &fl->fl_next) {
16178335ebd9SJ. Bruce Fields 		if (fl->fl_file != filp)
16188335ebd9SJ. Bruce Fields 			continue;
16198335ebd9SJ. Bruce Fields 		return (*flp)->fl_lmops->lm_change(before, F_UNLCK);
16208335ebd9SJ. Bruce Fields 	}
16218335ebd9SJ. Bruce Fields 	return -EAGAIN;
16228335ebd9SJ. Bruce Fields }
16238335ebd9SJ. Bruce Fields 
16241da177e4SLinus Torvalds /**
16251da177e4SLinus Torvalds  *	generic_setlease	-	sets a lease on an open file
16261da177e4SLinus Torvalds  *	@filp: file pointer
16271da177e4SLinus Torvalds  *	@arg: type of lease to obtain
16281da177e4SLinus Torvalds  *	@flp: input - file_lock to use, output - file_lock inserted
16291da177e4SLinus Torvalds  *
16301da177e4SLinus Torvalds  *	The (input) flp->fl_lmops->lm_break function is required
16311da177e4SLinus Torvalds  *	by break_lease().
16321da177e4SLinus Torvalds  *
16331c8c601aSJeff Layton  *	Called with inode->i_lock held.
16341da177e4SLinus Torvalds  */
16351da177e4SLinus Torvalds int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
16361da177e4SLinus Torvalds {
16371da177e4SLinus Torvalds 	struct dentry *dentry = filp->f_path.dentry;
16381da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
16398335ebd9SJ. Bruce Fields 	int error;
16401da177e4SLinus Torvalds 
16418e96e3b7SEric W. Biederman 	if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
16428335ebd9SJ. Bruce Fields 		return -EACCES;
16431da177e4SLinus Torvalds 	if (!S_ISREG(inode->i_mode))
16448335ebd9SJ. Bruce Fields 		return -EINVAL;
16451da177e4SLinus Torvalds 	error = security_file_lock(filp, arg);
16461da177e4SLinus Torvalds 	if (error)
16478335ebd9SJ. Bruce Fields 		return error;
16481da177e4SLinus Torvalds 
16491da177e4SLinus Torvalds 	time_out_leases(inode);
16501da177e4SLinus Torvalds 
16511da177e4SLinus Torvalds 	BUG_ON(!(*flp)->fl_lmops->lm_break);
16521da177e4SLinus Torvalds 
16538335ebd9SJ. Bruce Fields 	switch (arg) {
16548335ebd9SJ. Bruce Fields 	case F_UNLCK:
16558335ebd9SJ. Bruce Fields 		return generic_delete_lease(filp, flp);
16568335ebd9SJ. Bruce Fields 	case F_RDLCK:
16578335ebd9SJ. Bruce Fields 	case F_WRLCK:
16588335ebd9SJ. Bruce Fields 		return generic_add_lease(filp, arg, flp);
16598335ebd9SJ. Bruce Fields 	default:
16608d657eb3SDave Jones 		return -EINVAL;
16611da177e4SLinus Torvalds 	}
16621da177e4SLinus Torvalds }
16630af1a450SChristoph Hellwig EXPORT_SYMBOL(generic_setlease);
16641da177e4SLinus Torvalds 
1665b89f4321SArnd Bergmann static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1666b89f4321SArnd Bergmann {
166772c2d531SAl Viro 	if (filp->f_op->setlease)
1668b89f4321SArnd Bergmann 		return filp->f_op->setlease(filp, arg, lease);
1669b89f4321SArnd Bergmann 	else
1670b89f4321SArnd Bergmann 		return generic_setlease(filp, arg, lease);
1671b89f4321SArnd Bergmann }
1672b89f4321SArnd Bergmann 
16731da177e4SLinus Torvalds /**
1674a9933ceaSJ. Bruce Fields  *	vfs_setlease        -       sets a lease on an open file
16751da177e4SLinus Torvalds  *	@filp: file pointer
16761da177e4SLinus Torvalds  *	@arg: type of lease to obtain
16771da177e4SLinus Torvalds  *	@lease: file_lock to use
16781da177e4SLinus Torvalds  *
16791da177e4SLinus Torvalds  *	Call this to establish a lease on the file.
16808fb47a4fSJ. Bruce Fields  *	The (*lease)->fl_lmops->lm_break operation must be set; if not,
1681f9ffed26SJ. Bruce Fields  *	break_lease will oops!
1682f9ffed26SJ. Bruce Fields  *
1683f9ffed26SJ. Bruce Fields  *	This will call the filesystem's setlease file method, if
1684f9ffed26SJ. Bruce Fields  *	defined.  Note that there is no getlease method; instead, the
1685f9ffed26SJ. Bruce Fields  *	filesystem setlease method should call back to setlease() to
1686f9ffed26SJ. Bruce Fields  *	add a lease to the inode's lease list, where fcntl_getlease() can
1687f9ffed26SJ. Bruce Fields  *	find it.  Since fcntl_getlease() only reports whether the current
1688f9ffed26SJ. Bruce Fields  *	task holds a lease, a cluster filesystem need only do this for
1689f9ffed26SJ. Bruce Fields  *	leases held by processes on this node.
1690f9ffed26SJ. Bruce Fields  *
1691f9ffed26SJ. Bruce Fields  *	There is also no break_lease method; filesystems that
1692c9404c9cSAdam Buchbinder  *	handle their own leases should break leases themselves from the
1693f9ffed26SJ. Bruce Fields  *	filesystem's open, create, and (on truncate) setattr methods.
1694f9ffed26SJ. Bruce Fields  *
1695f9ffed26SJ. Bruce Fields  *	Warning: the only current setlease methods exist only to disable
1696f9ffed26SJ. Bruce Fields  *	leases in certain cases.  More vfs changes may be required to
1697f9ffed26SJ. Bruce Fields  *	allow a full filesystem lease implementation.
16981da177e4SLinus Torvalds  */
16991da177e4SLinus Torvalds 
1700a9933ceaSJ. Bruce Fields int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
17011da177e4SLinus Torvalds {
17021c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
17031da177e4SLinus Torvalds 	int error;
17041da177e4SLinus Torvalds 
17051c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
1706b89f4321SArnd Bergmann 	error = __vfs_setlease(filp, arg, lease);
17071c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
17081da177e4SLinus Torvalds 
17091da177e4SLinus Torvalds 	return error;
17101da177e4SLinus Torvalds }
1711a9933ceaSJ. Bruce Fields EXPORT_SYMBOL_GPL(vfs_setlease);
17121da177e4SLinus Torvalds 
17130ceaf6c7SJ. Bruce Fields static int do_fcntl_delete_lease(struct file *filp)
17140ceaf6c7SJ. Bruce Fields {
17150ceaf6c7SJ. Bruce Fields 	struct file_lock fl, *flp = &fl;
17160ceaf6c7SJ. Bruce Fields 
17170ceaf6c7SJ. Bruce Fields 	lease_init(filp, F_UNLCK, flp);
17180ceaf6c7SJ. Bruce Fields 
17190ceaf6c7SJ. Bruce Fields 	return vfs_setlease(filp, F_UNLCK, &flp);
17200ceaf6c7SJ. Bruce Fields }
17210ceaf6c7SJ. Bruce Fields 
17220ceaf6c7SJ. Bruce Fields static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
17231da177e4SLinus Torvalds {
17243df057acSJ. Bruce Fields 	struct file_lock *fl, *ret;
17251c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
1726f7347ce4SLinus Torvalds 	struct fasync_struct *new;
17271da177e4SLinus Torvalds 	int error;
17281da177e4SLinus Torvalds 
1729c5b1f0d9SArnd Bergmann 	fl = lease_alloc(filp, arg);
1730c5b1f0d9SArnd Bergmann 	if (IS_ERR(fl))
1731c5b1f0d9SArnd Bergmann 		return PTR_ERR(fl);
17321da177e4SLinus Torvalds 
1733f7347ce4SLinus Torvalds 	new = fasync_alloc();
1734f7347ce4SLinus Torvalds 	if (!new) {
1735f7347ce4SLinus Torvalds 		locks_free_lock(fl);
1736f7347ce4SLinus Torvalds 		return -ENOMEM;
1737f7347ce4SLinus Torvalds 	}
17383df057acSJ. Bruce Fields 	ret = fl;
17391c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
17408896b93fSJ. Bruce Fields 	error = __vfs_setlease(filp, arg, &ret);
174151ee4b84SChristoph Hellwig 	if (error) {
17421c8c601aSJeff Layton 		spin_unlock(&inode->i_lock);
174351ee4b84SChristoph Hellwig 		locks_free_lock(fl);
174451ee4b84SChristoph Hellwig 		goto out_free_fasync;
174551ee4b84SChristoph Hellwig 	}
17463df057acSJ. Bruce Fields 	if (ret != fl)
17473df057acSJ. Bruce Fields 		locks_free_lock(fl);
17481da177e4SLinus Torvalds 
1749f7347ce4SLinus Torvalds 	/*
1750f7347ce4SLinus Torvalds 	 * fasync_insert_entry() returns the old entry if any.
1751f7347ce4SLinus Torvalds 	 * If there was no old entry, then it used 'new' and
1752f7347ce4SLinus Torvalds 	 * inserted it into the fasync list. Clear new so that
1753f7347ce4SLinus Torvalds 	 * we don't release it here.
1754f7347ce4SLinus Torvalds 	 */
17553df057acSJ. Bruce Fields 	if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
1756f7347ce4SLinus Torvalds 		new = NULL;
1757f7347ce4SLinus Torvalds 
1758609d7fa9SEric W. Biederman 	error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
17591c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
176051ee4b84SChristoph Hellwig 
176151ee4b84SChristoph Hellwig out_free_fasync:
1762f7347ce4SLinus Torvalds 	if (new)
1763f7347ce4SLinus Torvalds 		fasync_free(new);
17641da177e4SLinus Torvalds 	return error;
17651da177e4SLinus Torvalds }
17661da177e4SLinus Torvalds 
17671da177e4SLinus Torvalds /**
17680ceaf6c7SJ. Bruce Fields  *	fcntl_setlease	-	sets a lease on an open file
17690ceaf6c7SJ. Bruce Fields  *	@fd: open file descriptor
17700ceaf6c7SJ. Bruce Fields  *	@filp: file pointer
17710ceaf6c7SJ. Bruce Fields  *	@arg: type of lease to obtain
17720ceaf6c7SJ. Bruce Fields  *
17730ceaf6c7SJ. Bruce Fields  *	Call this fcntl to establish a lease on the file.
17740ceaf6c7SJ. Bruce Fields  *	Note that you also need to call %F_SETSIG to
17750ceaf6c7SJ. Bruce Fields  *	receive a signal when the lease is broken.
17760ceaf6c7SJ. Bruce Fields  */
17770ceaf6c7SJ. Bruce Fields int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
17780ceaf6c7SJ. Bruce Fields {
17790ceaf6c7SJ. Bruce Fields 	if (arg == F_UNLCK)
17800ceaf6c7SJ. Bruce Fields 		return do_fcntl_delete_lease(filp);
17810ceaf6c7SJ. Bruce Fields 	return do_fcntl_add_lease(fd, filp, arg);
17820ceaf6c7SJ. Bruce Fields }
17830ceaf6c7SJ. Bruce Fields 
17840ceaf6c7SJ. Bruce Fields /**
17851da177e4SLinus Torvalds  * flock_lock_file_wait - Apply a FLOCK-style lock to a file
17861da177e4SLinus Torvalds  * @filp: The file to apply the lock to
17871da177e4SLinus Torvalds  * @fl: The lock to be applied
17881da177e4SLinus Torvalds  *
17891da177e4SLinus Torvalds  * Add a FLOCK style lock to a file.
17901da177e4SLinus Torvalds  */
17911da177e4SLinus Torvalds int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
17921da177e4SLinus Torvalds {
17931da177e4SLinus Torvalds 	int error;
17941da177e4SLinus Torvalds 	might_sleep();
17951da177e4SLinus Torvalds 	for (;;) {
17961da177e4SLinus Torvalds 		error = flock_lock_file(filp, fl);
1797bde74e4bSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
17981da177e4SLinus Torvalds 			break;
17991da177e4SLinus Torvalds 		error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
18001da177e4SLinus Torvalds 		if (!error)
18011da177e4SLinus Torvalds 			continue;
18021da177e4SLinus Torvalds 
18031da177e4SLinus Torvalds 		locks_delete_block(fl);
18041da177e4SLinus Torvalds 		break;
18051da177e4SLinus Torvalds 	}
18061da177e4SLinus Torvalds 	return error;
18071da177e4SLinus Torvalds }
18081da177e4SLinus Torvalds 
18091da177e4SLinus Torvalds EXPORT_SYMBOL(flock_lock_file_wait);
18101da177e4SLinus Torvalds 
18111da177e4SLinus Torvalds /**
18121da177e4SLinus Torvalds  *	sys_flock: - flock() system call.
18131da177e4SLinus Torvalds  *	@fd: the file descriptor to lock.
18141da177e4SLinus Torvalds  *	@cmd: the type of lock to apply.
18151da177e4SLinus Torvalds  *
18161da177e4SLinus Torvalds  *	Apply a %FL_FLOCK style lock to an open file descriptor.
18171da177e4SLinus Torvalds  *	The @cmd can be one of
18181da177e4SLinus Torvalds  *
18191da177e4SLinus Torvalds  *	%LOCK_SH -- a shared lock.
18201da177e4SLinus Torvalds  *
18211da177e4SLinus Torvalds  *	%LOCK_EX -- an exclusive lock.
18221da177e4SLinus Torvalds  *
18231da177e4SLinus Torvalds  *	%LOCK_UN -- remove an existing lock.
18241da177e4SLinus Torvalds  *
18251da177e4SLinus Torvalds  *	%LOCK_MAND -- a `mandatory' flock.  This exists to emulate Windows Share Modes.
18261da177e4SLinus Torvalds  *
18271da177e4SLinus Torvalds  *	%LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
18281da177e4SLinus Torvalds  *	processes read and write access respectively.
18291da177e4SLinus Torvalds  */
1830002c8976SHeiko Carstens SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
18311da177e4SLinus Torvalds {
18322903ff01SAl Viro 	struct fd f = fdget(fd);
18331da177e4SLinus Torvalds 	struct file_lock *lock;
18341da177e4SLinus Torvalds 	int can_sleep, unlock;
18351da177e4SLinus Torvalds 	int error;
18361da177e4SLinus Torvalds 
18371da177e4SLinus Torvalds 	error = -EBADF;
18382903ff01SAl Viro 	if (!f.file)
18391da177e4SLinus Torvalds 		goto out;
18401da177e4SLinus Torvalds 
18411da177e4SLinus Torvalds 	can_sleep = !(cmd & LOCK_NB);
18421da177e4SLinus Torvalds 	cmd &= ~LOCK_NB;
18431da177e4SLinus Torvalds 	unlock = (cmd == LOCK_UN);
18441da177e4SLinus Torvalds 
1845aeb5d727SAl Viro 	if (!unlock && !(cmd & LOCK_MAND) &&
18462903ff01SAl Viro 	    !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
18471da177e4SLinus Torvalds 		goto out_putf;
18481da177e4SLinus Torvalds 
18492903ff01SAl Viro 	error = flock_make_lock(f.file, &lock, cmd);
18501da177e4SLinus Torvalds 	if (error)
18511da177e4SLinus Torvalds 		goto out_putf;
18521da177e4SLinus Torvalds 	if (can_sleep)
18531da177e4SLinus Torvalds 		lock->fl_flags |= FL_SLEEP;
18541da177e4SLinus Torvalds 
18552903ff01SAl Viro 	error = security_file_lock(f.file, lock->fl_type);
18561da177e4SLinus Torvalds 	if (error)
18571da177e4SLinus Torvalds 		goto out_free;
18581da177e4SLinus Torvalds 
185972c2d531SAl Viro 	if (f.file->f_op->flock)
18602903ff01SAl Viro 		error = f.file->f_op->flock(f.file,
18611da177e4SLinus Torvalds 					  (can_sleep) ? F_SETLKW : F_SETLK,
18621da177e4SLinus Torvalds 					  lock);
18631da177e4SLinus Torvalds 	else
18642903ff01SAl Viro 		error = flock_lock_file_wait(f.file, lock);
18651da177e4SLinus Torvalds 
18661da177e4SLinus Torvalds  out_free:
18671da177e4SLinus Torvalds 	locks_free_lock(lock);
18681da177e4SLinus Torvalds 
18691da177e4SLinus Torvalds  out_putf:
18702903ff01SAl Viro 	fdput(f);
18711da177e4SLinus Torvalds  out:
18721da177e4SLinus Torvalds 	return error;
18731da177e4SLinus Torvalds }
18741da177e4SLinus Torvalds 
18753ee17abdSJ. Bruce Fields /**
18763ee17abdSJ. Bruce Fields  * vfs_test_lock - test file byte range lock
18773ee17abdSJ. Bruce Fields  * @filp: The file to test lock for
18786924c554SJ. Bruce Fields  * @fl: The lock to test; also used to hold result
18793ee17abdSJ. Bruce Fields  *
18803ee17abdSJ. Bruce Fields  * Returns -ERRNO on failure.  Indicates presence of conflicting lock by
18813ee17abdSJ. Bruce Fields  * setting conf->fl_type to something other than F_UNLCK.
18823ee17abdSJ. Bruce Fields  */
18833ee17abdSJ. Bruce Fields int vfs_test_lock(struct file *filp, struct file_lock *fl)
18843ee17abdSJ. Bruce Fields {
188572c2d531SAl Viro 	if (filp->f_op->lock)
18863ee17abdSJ. Bruce Fields 		return filp->f_op->lock(filp, F_GETLK, fl);
18873ee17abdSJ. Bruce Fields 	posix_test_lock(filp, fl);
18883ee17abdSJ. Bruce Fields 	return 0;
18893ee17abdSJ. Bruce Fields }
18903ee17abdSJ. Bruce Fields EXPORT_SYMBOL_GPL(vfs_test_lock);
18913ee17abdSJ. Bruce Fields 
1892c2fa1b8aSJ. Bruce Fields static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
1893c2fa1b8aSJ. Bruce Fields {
1894c2fa1b8aSJ. Bruce Fields 	flock->l_pid = fl->fl_pid;
1895c2fa1b8aSJ. Bruce Fields #if BITS_PER_LONG == 32
1896c2fa1b8aSJ. Bruce Fields 	/*
1897c2fa1b8aSJ. Bruce Fields 	 * Make sure we can represent the posix lock via
1898c2fa1b8aSJ. Bruce Fields 	 * legacy 32bit flock.
1899c2fa1b8aSJ. Bruce Fields 	 */
1900c2fa1b8aSJ. Bruce Fields 	if (fl->fl_start > OFFT_OFFSET_MAX)
1901c2fa1b8aSJ. Bruce Fields 		return -EOVERFLOW;
1902c2fa1b8aSJ. Bruce Fields 	if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
1903c2fa1b8aSJ. Bruce Fields 		return -EOVERFLOW;
1904c2fa1b8aSJ. Bruce Fields #endif
1905c2fa1b8aSJ. Bruce Fields 	flock->l_start = fl->fl_start;
1906c2fa1b8aSJ. Bruce Fields 	flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1907c2fa1b8aSJ. Bruce Fields 		fl->fl_end - fl->fl_start + 1;
1908c2fa1b8aSJ. Bruce Fields 	flock->l_whence = 0;
1909129a84deSJ. Bruce Fields 	flock->l_type = fl->fl_type;
1910c2fa1b8aSJ. Bruce Fields 	return 0;
1911c2fa1b8aSJ. Bruce Fields }
1912c2fa1b8aSJ. Bruce Fields 
1913c2fa1b8aSJ. Bruce Fields #if BITS_PER_LONG == 32
1914c2fa1b8aSJ. Bruce Fields static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
1915c2fa1b8aSJ. Bruce Fields {
1916c2fa1b8aSJ. Bruce Fields 	flock->l_pid = fl->fl_pid;
1917c2fa1b8aSJ. Bruce Fields 	flock->l_start = fl->fl_start;
1918c2fa1b8aSJ. Bruce Fields 	flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1919c2fa1b8aSJ. Bruce Fields 		fl->fl_end - fl->fl_start + 1;
1920c2fa1b8aSJ. Bruce Fields 	flock->l_whence = 0;
1921c2fa1b8aSJ. Bruce Fields 	flock->l_type = fl->fl_type;
1922c2fa1b8aSJ. Bruce Fields }
1923c2fa1b8aSJ. Bruce Fields #endif
1924c2fa1b8aSJ. Bruce Fields 
19251da177e4SLinus Torvalds /* Report the first existing lock that would conflict with l.
19261da177e4SLinus Torvalds  * This implements the F_GETLK command of fcntl().
19271da177e4SLinus Torvalds  */
19281da177e4SLinus Torvalds int fcntl_getlk(struct file *filp, struct flock __user *l)
19291da177e4SLinus Torvalds {
19309d6a8c5cSMarc Eshel 	struct file_lock file_lock;
19311da177e4SLinus Torvalds 	struct flock flock;
19321da177e4SLinus Torvalds 	int error;
19331da177e4SLinus Torvalds 
19341da177e4SLinus Torvalds 	error = -EFAULT;
19351da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
19361da177e4SLinus Torvalds 		goto out;
19371da177e4SLinus Torvalds 	error = -EINVAL;
19381da177e4SLinus Torvalds 	if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
19391da177e4SLinus Torvalds 		goto out;
19401da177e4SLinus Torvalds 
19411da177e4SLinus Torvalds 	error = flock_to_posix_lock(filp, &file_lock, &flock);
19421da177e4SLinus Torvalds 	if (error)
19431da177e4SLinus Torvalds 		goto out;
19441da177e4SLinus Torvalds 
19453ee17abdSJ. Bruce Fields 	error = vfs_test_lock(filp, &file_lock);
19463ee17abdSJ. Bruce Fields 	if (error)
19471da177e4SLinus Torvalds 		goto out;
19481da177e4SLinus Torvalds 
19499d6a8c5cSMarc Eshel 	flock.l_type = file_lock.fl_type;
19509d6a8c5cSMarc Eshel 	if (file_lock.fl_type != F_UNLCK) {
19519d6a8c5cSMarc Eshel 		error = posix_lock_to_flock(&flock, &file_lock);
1952c2fa1b8aSJ. Bruce Fields 		if (error)
19531da177e4SLinus Torvalds 			goto out;
19541da177e4SLinus Torvalds 	}
19551da177e4SLinus Torvalds 	error = -EFAULT;
19561da177e4SLinus Torvalds 	if (!copy_to_user(l, &flock, sizeof(flock)))
19571da177e4SLinus Torvalds 		error = 0;
19581da177e4SLinus Torvalds out:
19591da177e4SLinus Torvalds 	return error;
19601da177e4SLinus Torvalds }
19611da177e4SLinus Torvalds 
19627723ec97SMarc Eshel /**
19637723ec97SMarc Eshel  * vfs_lock_file - file byte range lock
19647723ec97SMarc Eshel  * @filp: The file to apply the lock to
19657723ec97SMarc Eshel  * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
19667723ec97SMarc Eshel  * @fl: The lock to be applied
1967150b3934SMarc Eshel  * @conf: Place to return a copy of the conflicting lock, if found.
1968150b3934SMarc Eshel  *
1969150b3934SMarc Eshel  * A caller that doesn't care about the conflicting lock may pass NULL
1970150b3934SMarc Eshel  * as the final argument.
1971150b3934SMarc Eshel  *
1972150b3934SMarc Eshel  * If the filesystem defines a private ->lock() method, then @conf will
1973150b3934SMarc Eshel  * be left unchanged; so a caller that cares should initialize it to
1974150b3934SMarc Eshel  * some acceptable default.
19752beb6614SMarc Eshel  *
19762beb6614SMarc Eshel  * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
19772beb6614SMarc Eshel  * locks, the ->lock() interface may return asynchronously, before the lock has
19782beb6614SMarc Eshel  * been granted or denied by the underlying filesystem, if (and only if)
19798fb47a4fSJ. Bruce Fields  * lm_grant is set. Callers expecting ->lock() to return asynchronously
19802beb6614SMarc Eshel  * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
19812beb6614SMarc Eshel  * the request is for a blocking lock. When ->lock() does return asynchronously,
19828fb47a4fSJ. Bruce Fields  * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
19832beb6614SMarc Eshel  * request completes.
19842beb6614SMarc Eshel  * If the request is for non-blocking lock the file system should return
1985bde74e4bSMiklos Szeredi  * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
1986bde74e4bSMiklos Szeredi  * with the result. If the request timed out the callback routine will return a
19872beb6614SMarc Eshel  * nonzero return code and the file system should release the lock. The file
19882beb6614SMarc Eshel  * system is also responsible to keep a corresponding posix lock when it
19892beb6614SMarc Eshel  * grants a lock so the VFS can find out which locks are locally held and do
19902beb6614SMarc Eshel  * the correct lock cleanup when required.
19912beb6614SMarc Eshel  * The underlying filesystem must not drop the kernel lock or call
19928fb47a4fSJ. Bruce Fields  * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
19932beb6614SMarc Eshel  * return code.
19947723ec97SMarc Eshel  */
1995150b3934SMarc Eshel int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
19967723ec97SMarc Eshel {
199772c2d531SAl Viro 	if (filp->f_op->lock)
19987723ec97SMarc Eshel 		return filp->f_op->lock(filp, cmd, fl);
19997723ec97SMarc Eshel 	else
2000150b3934SMarc Eshel 		return posix_lock_file(filp, fl, conf);
20017723ec97SMarc Eshel }
20027723ec97SMarc Eshel EXPORT_SYMBOL_GPL(vfs_lock_file);
20037723ec97SMarc Eshel 
2004b648a6deSMiklos Szeredi static int do_lock_file_wait(struct file *filp, unsigned int cmd,
2005b648a6deSMiklos Szeredi 			     struct file_lock *fl)
2006b648a6deSMiklos Szeredi {
2007b648a6deSMiklos Szeredi 	int error;
2008b648a6deSMiklos Szeredi 
2009b648a6deSMiklos Szeredi 	error = security_file_lock(filp, fl->fl_type);
2010b648a6deSMiklos Szeredi 	if (error)
2011b648a6deSMiklos Szeredi 		return error;
2012b648a6deSMiklos Szeredi 
2013b648a6deSMiklos Szeredi 	for (;;) {
2014764c76b3SMiklos Szeredi 		error = vfs_lock_file(filp, cmd, fl, NULL);
2015b648a6deSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
2016b648a6deSMiklos Szeredi 			break;
2017764c76b3SMiklos Szeredi 		error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
2018b648a6deSMiklos Szeredi 		if (!error)
2019b648a6deSMiklos Szeredi 			continue;
2020b648a6deSMiklos Szeredi 
2021b648a6deSMiklos Szeredi 		locks_delete_block(fl);
2022b648a6deSMiklos Szeredi 		break;
2023b648a6deSMiklos Szeredi 	}
2024b648a6deSMiklos Szeredi 
2025b648a6deSMiklos Szeredi 	return error;
2026b648a6deSMiklos Szeredi }
2027b648a6deSMiklos Szeredi 
20281da177e4SLinus Torvalds /* Apply the lock described by l to an open file descriptor.
20291da177e4SLinus Torvalds  * This implements both the F_SETLK and F_SETLKW commands of fcntl().
20301da177e4SLinus Torvalds  */
2031c293621bSPeter Staubach int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
2032c293621bSPeter Staubach 		struct flock __user *l)
20331da177e4SLinus Torvalds {
20341da177e4SLinus Torvalds 	struct file_lock *file_lock = locks_alloc_lock();
20351da177e4SLinus Torvalds 	struct flock flock;
20361da177e4SLinus Torvalds 	struct inode *inode;
20370b2bac2fSAl Viro 	struct file *f;
20381da177e4SLinus Torvalds 	int error;
20391da177e4SLinus Torvalds 
20401da177e4SLinus Torvalds 	if (file_lock == NULL)
20411da177e4SLinus Torvalds 		return -ENOLCK;
20421da177e4SLinus Torvalds 
20431da177e4SLinus Torvalds 	/*
20441da177e4SLinus Torvalds 	 * This might block, so we do it before checking the inode.
20451da177e4SLinus Torvalds 	 */
20461da177e4SLinus Torvalds 	error = -EFAULT;
20471da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
20481da177e4SLinus Torvalds 		goto out;
20491da177e4SLinus Torvalds 
2050496ad9aaSAl Viro 	inode = file_inode(filp);
20511da177e4SLinus Torvalds 
20521da177e4SLinus Torvalds 	/* Don't allow mandatory locks on files that may be memory mapped
20531da177e4SLinus Torvalds 	 * and shared.
20541da177e4SLinus Torvalds 	 */
2055a16877caSPavel Emelyanov 	if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
20561da177e4SLinus Torvalds 		error = -EAGAIN;
20571da177e4SLinus Torvalds 		goto out;
20581da177e4SLinus Torvalds 	}
20591da177e4SLinus Torvalds 
2060c293621bSPeter Staubach again:
20611da177e4SLinus Torvalds 	error = flock_to_posix_lock(filp, file_lock, &flock);
20621da177e4SLinus Torvalds 	if (error)
20631da177e4SLinus Torvalds 		goto out;
20641da177e4SLinus Torvalds 	if (cmd == F_SETLKW) {
20651da177e4SLinus Torvalds 		file_lock->fl_flags |= FL_SLEEP;
20661da177e4SLinus Torvalds 	}
20671da177e4SLinus Torvalds 
20681da177e4SLinus Torvalds 	error = -EBADF;
20691da177e4SLinus Torvalds 	switch (flock.l_type) {
20701da177e4SLinus Torvalds 	case F_RDLCK:
20711da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_READ))
20721da177e4SLinus Torvalds 			goto out;
20731da177e4SLinus Torvalds 		break;
20741da177e4SLinus Torvalds 	case F_WRLCK:
20751da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_WRITE))
20761da177e4SLinus Torvalds 			goto out;
20771da177e4SLinus Torvalds 		break;
20781da177e4SLinus Torvalds 	case F_UNLCK:
20791da177e4SLinus Torvalds 		break;
20801da177e4SLinus Torvalds 	default:
20811da177e4SLinus Torvalds 		error = -EINVAL;
20821da177e4SLinus Torvalds 		goto out;
20831da177e4SLinus Torvalds 	}
20841da177e4SLinus Torvalds 
2085b648a6deSMiklos Szeredi 	error = do_lock_file_wait(filp, cmd, file_lock);
2086c293621bSPeter Staubach 
2087c293621bSPeter Staubach 	/*
2088c293621bSPeter Staubach 	 * Attempt to detect a close/fcntl race and recover by
2089c293621bSPeter Staubach 	 * releasing the lock that was just acquired.
2090c293621bSPeter Staubach 	 */
20910b2bac2fSAl Viro 	/*
20920b2bac2fSAl Viro 	 * we need that spin_lock here - it prevents reordering between
20930b2bac2fSAl Viro 	 * update of inode->i_flock and check for it done in close().
20940b2bac2fSAl Viro 	 * rcu_read_lock() wouldn't do.
20950b2bac2fSAl Viro 	 */
20960b2bac2fSAl Viro 	spin_lock(&current->files->file_lock);
20970b2bac2fSAl Viro 	f = fcheck(fd);
20980b2bac2fSAl Viro 	spin_unlock(&current->files->file_lock);
20990b2bac2fSAl Viro 	if (!error && f != filp && flock.l_type != F_UNLCK) {
2100c293621bSPeter Staubach 		flock.l_type = F_UNLCK;
2101c293621bSPeter Staubach 		goto again;
2102c293621bSPeter Staubach 	}
21031da177e4SLinus Torvalds 
21041da177e4SLinus Torvalds out:
21051da177e4SLinus Torvalds 	locks_free_lock(file_lock);
21061da177e4SLinus Torvalds 	return error;
21071da177e4SLinus Torvalds }
21081da177e4SLinus Torvalds 
21091da177e4SLinus Torvalds #if BITS_PER_LONG == 32
21101da177e4SLinus Torvalds /* Report the first existing lock that would conflict with l.
21111da177e4SLinus Torvalds  * This implements the F_GETLK command of fcntl().
21121da177e4SLinus Torvalds  */
21131da177e4SLinus Torvalds int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
21141da177e4SLinus Torvalds {
21159d6a8c5cSMarc Eshel 	struct file_lock file_lock;
21161da177e4SLinus Torvalds 	struct flock64 flock;
21171da177e4SLinus Torvalds 	int error;
21181da177e4SLinus Torvalds 
21191da177e4SLinus Torvalds 	error = -EFAULT;
21201da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
21211da177e4SLinus Torvalds 		goto out;
21221da177e4SLinus Torvalds 	error = -EINVAL;
21231da177e4SLinus Torvalds 	if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
21241da177e4SLinus Torvalds 		goto out;
21251da177e4SLinus Torvalds 
21261da177e4SLinus Torvalds 	error = flock64_to_posix_lock(filp, &file_lock, &flock);
21271da177e4SLinus Torvalds 	if (error)
21281da177e4SLinus Torvalds 		goto out;
21291da177e4SLinus Torvalds 
21303ee17abdSJ. Bruce Fields 	error = vfs_test_lock(filp, &file_lock);
21313ee17abdSJ. Bruce Fields 	if (error)
21321da177e4SLinus Torvalds 		goto out;
21331da177e4SLinus Torvalds 
21349d6a8c5cSMarc Eshel 	flock.l_type = file_lock.fl_type;
21359d6a8c5cSMarc Eshel 	if (file_lock.fl_type != F_UNLCK)
21369d6a8c5cSMarc Eshel 		posix_lock_to_flock64(&flock, &file_lock);
21379d6a8c5cSMarc Eshel 
21381da177e4SLinus Torvalds 	error = -EFAULT;
21391da177e4SLinus Torvalds 	if (!copy_to_user(l, &flock, sizeof(flock)))
21401da177e4SLinus Torvalds 		error = 0;
21411da177e4SLinus Torvalds 
21421da177e4SLinus Torvalds out:
21431da177e4SLinus Torvalds 	return error;
21441da177e4SLinus Torvalds }
21451da177e4SLinus Torvalds 
21461da177e4SLinus Torvalds /* Apply the lock described by l to an open file descriptor.
21471da177e4SLinus Torvalds  * This implements both the F_SETLK and F_SETLKW commands of fcntl().
21481da177e4SLinus Torvalds  */
2149c293621bSPeter Staubach int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
2150c293621bSPeter Staubach 		struct flock64 __user *l)
21511da177e4SLinus Torvalds {
21521da177e4SLinus Torvalds 	struct file_lock *file_lock = locks_alloc_lock();
21531da177e4SLinus Torvalds 	struct flock64 flock;
21541da177e4SLinus Torvalds 	struct inode *inode;
21550b2bac2fSAl Viro 	struct file *f;
21561da177e4SLinus Torvalds 	int error;
21571da177e4SLinus Torvalds 
21581da177e4SLinus Torvalds 	if (file_lock == NULL)
21591da177e4SLinus Torvalds 		return -ENOLCK;
21601da177e4SLinus Torvalds 
21611da177e4SLinus Torvalds 	/*
21621da177e4SLinus Torvalds 	 * This might block, so we do it before checking the inode.
21631da177e4SLinus Torvalds 	 */
21641da177e4SLinus Torvalds 	error = -EFAULT;
21651da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
21661da177e4SLinus Torvalds 		goto out;
21671da177e4SLinus Torvalds 
2168496ad9aaSAl Viro 	inode = file_inode(filp);
21691da177e4SLinus Torvalds 
21701da177e4SLinus Torvalds 	/* Don't allow mandatory locks on files that may be memory mapped
21711da177e4SLinus Torvalds 	 * and shared.
21721da177e4SLinus Torvalds 	 */
2173a16877caSPavel Emelyanov 	if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
21741da177e4SLinus Torvalds 		error = -EAGAIN;
21751da177e4SLinus Torvalds 		goto out;
21761da177e4SLinus Torvalds 	}
21771da177e4SLinus Torvalds 
2178c293621bSPeter Staubach again:
21791da177e4SLinus Torvalds 	error = flock64_to_posix_lock(filp, file_lock, &flock);
21801da177e4SLinus Torvalds 	if (error)
21811da177e4SLinus Torvalds 		goto out;
21821da177e4SLinus Torvalds 	if (cmd == F_SETLKW64) {
21831da177e4SLinus Torvalds 		file_lock->fl_flags |= FL_SLEEP;
21841da177e4SLinus Torvalds 	}
21851da177e4SLinus Torvalds 
21861da177e4SLinus Torvalds 	error = -EBADF;
21871da177e4SLinus Torvalds 	switch (flock.l_type) {
21881da177e4SLinus Torvalds 	case F_RDLCK:
21891da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_READ))
21901da177e4SLinus Torvalds 			goto out;
21911da177e4SLinus Torvalds 		break;
21921da177e4SLinus Torvalds 	case F_WRLCK:
21931da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_WRITE))
21941da177e4SLinus Torvalds 			goto out;
21951da177e4SLinus Torvalds 		break;
21961da177e4SLinus Torvalds 	case F_UNLCK:
21971da177e4SLinus Torvalds 		break;
21981da177e4SLinus Torvalds 	default:
21991da177e4SLinus Torvalds 		error = -EINVAL;
22001da177e4SLinus Torvalds 		goto out;
22011da177e4SLinus Torvalds 	}
22021da177e4SLinus Torvalds 
2203b648a6deSMiklos Szeredi 	error = do_lock_file_wait(filp, cmd, file_lock);
2204c293621bSPeter Staubach 
2205c293621bSPeter Staubach 	/*
2206c293621bSPeter Staubach 	 * Attempt to detect a close/fcntl race and recover by
2207c293621bSPeter Staubach 	 * releasing the lock that was just acquired.
2208c293621bSPeter Staubach 	 */
22090b2bac2fSAl Viro 	spin_lock(&current->files->file_lock);
22100b2bac2fSAl Viro 	f = fcheck(fd);
22110b2bac2fSAl Viro 	spin_unlock(&current->files->file_lock);
22120b2bac2fSAl Viro 	if (!error && f != filp && flock.l_type != F_UNLCK) {
2213c293621bSPeter Staubach 		flock.l_type = F_UNLCK;
2214c293621bSPeter Staubach 		goto again;
2215c293621bSPeter Staubach 	}
22161da177e4SLinus Torvalds 
22171da177e4SLinus Torvalds out:
22181da177e4SLinus Torvalds 	locks_free_lock(file_lock);
22191da177e4SLinus Torvalds 	return error;
22201da177e4SLinus Torvalds }
22211da177e4SLinus Torvalds #endif /* BITS_PER_LONG == 32 */
22221da177e4SLinus Torvalds 
22231da177e4SLinus Torvalds /*
22241da177e4SLinus Torvalds  * This function is called when the file is being removed
22251da177e4SLinus Torvalds  * from the task's fd array.  POSIX locks belonging to this task
22261da177e4SLinus Torvalds  * are deleted at this time.
22271da177e4SLinus Torvalds  */
22281da177e4SLinus Torvalds void locks_remove_posix(struct file *filp, fl_owner_t owner)
22291da177e4SLinus Torvalds {
2230ff7b86b8SMiklos Szeredi 	struct file_lock lock;
22311da177e4SLinus Torvalds 
22321da177e4SLinus Torvalds 	/*
22331da177e4SLinus Torvalds 	 * If there are no locks held on this file, we don't need to call
22341da177e4SLinus Torvalds 	 * posix_lock_file().  Another process could be setting a lock on this
22351da177e4SLinus Torvalds 	 * file at the same time, but we wouldn't remove that lock anyway.
22361da177e4SLinus Torvalds 	 */
2237496ad9aaSAl Viro 	if (!file_inode(filp)->i_flock)
22381da177e4SLinus Torvalds 		return;
22391da177e4SLinus Torvalds 
22401da177e4SLinus Torvalds 	lock.fl_type = F_UNLCK;
224175e1fcc0SMiklos Szeredi 	lock.fl_flags = FL_POSIX | FL_CLOSE;
22421da177e4SLinus Torvalds 	lock.fl_start = 0;
22431da177e4SLinus Torvalds 	lock.fl_end = OFFSET_MAX;
22441da177e4SLinus Torvalds 	lock.fl_owner = owner;
22451da177e4SLinus Torvalds 	lock.fl_pid = current->tgid;
22461da177e4SLinus Torvalds 	lock.fl_file = filp;
22471da177e4SLinus Torvalds 	lock.fl_ops = NULL;
22481da177e4SLinus Torvalds 	lock.fl_lmops = NULL;
22491da177e4SLinus Torvalds 
2250150b3934SMarc Eshel 	vfs_lock_file(filp, F_SETLK, &lock, NULL);
22511da177e4SLinus Torvalds 
22521da177e4SLinus Torvalds 	if (lock.fl_ops && lock.fl_ops->fl_release_private)
22531da177e4SLinus Torvalds 		lock.fl_ops->fl_release_private(&lock);
22541da177e4SLinus Torvalds }
22551da177e4SLinus Torvalds 
22561da177e4SLinus Torvalds EXPORT_SYMBOL(locks_remove_posix);
22571da177e4SLinus Torvalds 
22581da177e4SLinus Torvalds /*
22591da177e4SLinus Torvalds  * This function is called on the last close of an open file.
22601da177e4SLinus Torvalds  */
22611da177e4SLinus Torvalds void locks_remove_flock(struct file *filp)
22621da177e4SLinus Torvalds {
2263496ad9aaSAl Viro 	struct inode * inode = file_inode(filp);
22641da177e4SLinus Torvalds 	struct file_lock *fl;
22651da177e4SLinus Torvalds 	struct file_lock **before;
22661da177e4SLinus Torvalds 
22671da177e4SLinus Torvalds 	if (!inode->i_flock)
22681da177e4SLinus Torvalds 		return;
22691da177e4SLinus Torvalds 
227072c2d531SAl Viro 	if (filp->f_op->flock) {
22711da177e4SLinus Torvalds 		struct file_lock fl = {
22721da177e4SLinus Torvalds 			.fl_pid = current->tgid,
22731da177e4SLinus Torvalds 			.fl_file = filp,
22741da177e4SLinus Torvalds 			.fl_flags = FL_FLOCK,
22751da177e4SLinus Torvalds 			.fl_type = F_UNLCK,
22761da177e4SLinus Torvalds 			.fl_end = OFFSET_MAX,
22771da177e4SLinus Torvalds 		};
22781da177e4SLinus Torvalds 		filp->f_op->flock(filp, F_SETLKW, &fl);
227980fec4c6STrond Myklebust 		if (fl.fl_ops && fl.fl_ops->fl_release_private)
228080fec4c6STrond Myklebust 			fl.fl_ops->fl_release_private(&fl);
22811da177e4SLinus Torvalds 	}
22821da177e4SLinus Torvalds 
22831c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
22841da177e4SLinus Torvalds 	before = &inode->i_flock;
22851da177e4SLinus Torvalds 
22861da177e4SLinus Torvalds 	while ((fl = *before) != NULL) {
22871da177e4SLinus Torvalds 		if (fl->fl_file == filp) {
2288c293621bSPeter Staubach 			if (IS_FLOCK(fl)) {
22891da177e4SLinus Torvalds 				locks_delete_lock(before);
22901da177e4SLinus Torvalds 				continue;
22911da177e4SLinus Torvalds 			}
22921da177e4SLinus Torvalds 			if (IS_LEASE(fl)) {
22931da177e4SLinus Torvalds 				lease_modify(before, F_UNLCK);
22941da177e4SLinus Torvalds 				continue;
22951da177e4SLinus Torvalds 			}
22961da177e4SLinus Torvalds 			/* What? */
22971da177e4SLinus Torvalds 			BUG();
22981da177e4SLinus Torvalds  		}
22991da177e4SLinus Torvalds 		before = &fl->fl_next;
23001da177e4SLinus Torvalds 	}
23011c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
23021da177e4SLinus Torvalds }
23031da177e4SLinus Torvalds 
23041da177e4SLinus Torvalds /**
23051da177e4SLinus Torvalds  *	posix_unblock_lock - stop waiting for a file lock
23061da177e4SLinus Torvalds  *	@waiter: the lock which was waiting
23071da177e4SLinus Torvalds  *
23081da177e4SLinus Torvalds  *	lockd needs to block waiting for locks.
23091da177e4SLinus Torvalds  */
231064a318eeSJ. Bruce Fields int
2311f891a29fSJeff Layton posix_unblock_lock(struct file_lock *waiter)
23121da177e4SLinus Torvalds {
231364a318eeSJ. Bruce Fields 	int status = 0;
231464a318eeSJ. Bruce Fields 
23157b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
23165996a298SJ. Bruce Fields 	if (waiter->fl_next)
23171da177e4SLinus Torvalds 		__locks_delete_block(waiter);
231864a318eeSJ. Bruce Fields 	else
231964a318eeSJ. Bruce Fields 		status = -ENOENT;
23207b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
232164a318eeSJ. Bruce Fields 	return status;
23221da177e4SLinus Torvalds }
23231da177e4SLinus Torvalds EXPORT_SYMBOL(posix_unblock_lock);
23241da177e4SLinus Torvalds 
23259b9d2ab4SMarc Eshel /**
23269b9d2ab4SMarc Eshel  * vfs_cancel_lock - file byte range unblock lock
23279b9d2ab4SMarc Eshel  * @filp: The file to apply the unblock to
23289b9d2ab4SMarc Eshel  * @fl: The lock to be unblocked
23299b9d2ab4SMarc Eshel  *
23309b9d2ab4SMarc Eshel  * Used by lock managers to cancel blocked requests
23319b9d2ab4SMarc Eshel  */
23329b9d2ab4SMarc Eshel int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
23339b9d2ab4SMarc Eshel {
233472c2d531SAl Viro 	if (filp->f_op->lock)
23359b9d2ab4SMarc Eshel 		return filp->f_op->lock(filp, F_CANCELLK, fl);
23369b9d2ab4SMarc Eshel 	return 0;
23379b9d2ab4SMarc Eshel }
23389b9d2ab4SMarc Eshel 
23399b9d2ab4SMarc Eshel EXPORT_SYMBOL_GPL(vfs_cancel_lock);
23409b9d2ab4SMarc Eshel 
23417f8ada98SPavel Emelyanov #ifdef CONFIG_PROC_FS
2342d8ba7a36SAlexey Dobriyan #include <linux/proc_fs.h>
23437f8ada98SPavel Emelyanov #include <linux/seq_file.h>
23447f8ada98SPavel Emelyanov 
23457012b02aSJeff Layton struct locks_iterator {
23467012b02aSJeff Layton 	int	li_cpu;
23477012b02aSJeff Layton 	loff_t	li_pos;
23487012b02aSJeff Layton };
23497012b02aSJeff Layton 
23507f8ada98SPavel Emelyanov static void lock_get_status(struct seq_file *f, struct file_lock *fl,
235199dc8292SJerome Marchand 			    loff_t id, char *pfx)
23521da177e4SLinus Torvalds {
23531da177e4SLinus Torvalds 	struct inode *inode = NULL;
2354ab1f1611SVitaliy Gusev 	unsigned int fl_pid;
2355ab1f1611SVitaliy Gusev 
2356ab1f1611SVitaliy Gusev 	if (fl->fl_nspid)
23576c5f3e7bSPavel Emelyanov 		fl_pid = pid_vnr(fl->fl_nspid);
2358ab1f1611SVitaliy Gusev 	else
2359ab1f1611SVitaliy Gusev 		fl_pid = fl->fl_pid;
23601da177e4SLinus Torvalds 
23611da177e4SLinus Torvalds 	if (fl->fl_file != NULL)
2362496ad9aaSAl Viro 		inode = file_inode(fl->fl_file);
23631da177e4SLinus Torvalds 
236499dc8292SJerome Marchand 	seq_printf(f, "%lld:%s ", id, pfx);
23651da177e4SLinus Torvalds 	if (IS_POSIX(fl)) {
23667f8ada98SPavel Emelyanov 		seq_printf(f, "%6s %s ",
23671da177e4SLinus Torvalds 			     (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
23681da177e4SLinus Torvalds 			     (inode == NULL) ? "*NOINODE*" :
2369a16877caSPavel Emelyanov 			     mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
23701da177e4SLinus Torvalds 	} else if (IS_FLOCK(fl)) {
23711da177e4SLinus Torvalds 		if (fl->fl_type & LOCK_MAND) {
23727f8ada98SPavel Emelyanov 			seq_printf(f, "FLOCK  MSNFS     ");
23731da177e4SLinus Torvalds 		} else {
23747f8ada98SPavel Emelyanov 			seq_printf(f, "FLOCK  ADVISORY  ");
23751da177e4SLinus Torvalds 		}
23761da177e4SLinus Torvalds 	} else if (IS_LEASE(fl)) {
23777f8ada98SPavel Emelyanov 		seq_printf(f, "LEASE  ");
2378ab83fa4bSJ. Bruce Fields 		if (lease_breaking(fl))
23797f8ada98SPavel Emelyanov 			seq_printf(f, "BREAKING  ");
23801da177e4SLinus Torvalds 		else if (fl->fl_file)
23817f8ada98SPavel Emelyanov 			seq_printf(f, "ACTIVE    ");
23821da177e4SLinus Torvalds 		else
23837f8ada98SPavel Emelyanov 			seq_printf(f, "BREAKER   ");
23841da177e4SLinus Torvalds 	} else {
23857f8ada98SPavel Emelyanov 		seq_printf(f, "UNKNOWN UNKNOWN  ");
23861da177e4SLinus Torvalds 	}
23871da177e4SLinus Torvalds 	if (fl->fl_type & LOCK_MAND) {
23887f8ada98SPavel Emelyanov 		seq_printf(f, "%s ",
23891da177e4SLinus Torvalds 			       (fl->fl_type & LOCK_READ)
23901da177e4SLinus Torvalds 			       ? (fl->fl_type & LOCK_WRITE) ? "RW   " : "READ "
23911da177e4SLinus Torvalds 			       : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
23921da177e4SLinus Torvalds 	} else {
23937f8ada98SPavel Emelyanov 		seq_printf(f, "%s ",
2394ab83fa4bSJ. Bruce Fields 			       (lease_breaking(fl))
23950ee5c6d6SJeff Layton 			       ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
23960ee5c6d6SJeff Layton 			       : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
23971da177e4SLinus Torvalds 	}
23981da177e4SLinus Torvalds 	if (inode) {
23991da177e4SLinus Torvalds #ifdef WE_CAN_BREAK_LSLK_NOW
2400ab1f1611SVitaliy Gusev 		seq_printf(f, "%d %s:%ld ", fl_pid,
24011da177e4SLinus Torvalds 				inode->i_sb->s_id, inode->i_ino);
24021da177e4SLinus Torvalds #else
24031da177e4SLinus Torvalds 		/* userspace relies on this representation of dev_t ;-( */
2404ab1f1611SVitaliy Gusev 		seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
24051da177e4SLinus Torvalds 				MAJOR(inode->i_sb->s_dev),
24061da177e4SLinus Torvalds 				MINOR(inode->i_sb->s_dev), inode->i_ino);
24071da177e4SLinus Torvalds #endif
24081da177e4SLinus Torvalds 	} else {
2409ab1f1611SVitaliy Gusev 		seq_printf(f, "%d <none>:0 ", fl_pid);
24101da177e4SLinus Torvalds 	}
24111da177e4SLinus Torvalds 	if (IS_POSIX(fl)) {
24121da177e4SLinus Torvalds 		if (fl->fl_end == OFFSET_MAX)
24137f8ada98SPavel Emelyanov 			seq_printf(f, "%Ld EOF\n", fl->fl_start);
24141da177e4SLinus Torvalds 		else
24157f8ada98SPavel Emelyanov 			seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
24161da177e4SLinus Torvalds 	} else {
24177f8ada98SPavel Emelyanov 		seq_printf(f, "0 EOF\n");
24181da177e4SLinus Torvalds 	}
24191da177e4SLinus Torvalds }
24201da177e4SLinus Torvalds 
24217f8ada98SPavel Emelyanov static int locks_show(struct seq_file *f, void *v)
24221da177e4SLinus Torvalds {
24237012b02aSJeff Layton 	struct locks_iterator *iter = f->private;
24247f8ada98SPavel Emelyanov 	struct file_lock *fl, *bfl;
24257f8ada98SPavel Emelyanov 
2426139ca04eSJeff Layton 	fl = hlist_entry(v, struct file_lock, fl_link);
24277f8ada98SPavel Emelyanov 
24287012b02aSJeff Layton 	lock_get_status(f, fl, iter->li_pos, "");
24297f8ada98SPavel Emelyanov 
24307f8ada98SPavel Emelyanov 	list_for_each_entry(bfl, &fl->fl_block, fl_block)
24317012b02aSJeff Layton 		lock_get_status(f, bfl, iter->li_pos, " ->");
24327f8ada98SPavel Emelyanov 
24337f8ada98SPavel Emelyanov 	return 0;
24341da177e4SLinus Torvalds }
24351da177e4SLinus Torvalds 
24367f8ada98SPavel Emelyanov static void *locks_start(struct seq_file *f, loff_t *pos)
24371da177e4SLinus Torvalds {
24387012b02aSJeff Layton 	struct locks_iterator *iter = f->private;
243999dc8292SJerome Marchand 
24407012b02aSJeff Layton 	iter->li_pos = *pos + 1;
24417012b02aSJeff Layton 	lg_global_lock(&file_lock_lglock);
24427b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
24437012b02aSJeff Layton 	return seq_hlist_start_percpu(&file_lock_list, &iter->li_cpu, *pos);
24441da177e4SLinus Torvalds }
24457f8ada98SPavel Emelyanov 
24467f8ada98SPavel Emelyanov static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
24477f8ada98SPavel Emelyanov {
24487012b02aSJeff Layton 	struct locks_iterator *iter = f->private;
24497012b02aSJeff Layton 
24507012b02aSJeff Layton 	++iter->li_pos;
24517012b02aSJeff Layton 	return seq_hlist_next_percpu(v, &file_lock_list, &iter->li_cpu, pos);
24521da177e4SLinus Torvalds }
24537f8ada98SPavel Emelyanov 
24547f8ada98SPavel Emelyanov static void locks_stop(struct seq_file *f, void *v)
24557f8ada98SPavel Emelyanov {
24567b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
24577012b02aSJeff Layton 	lg_global_unlock(&file_lock_lglock);
24581da177e4SLinus Torvalds }
24591da177e4SLinus Torvalds 
2460d8ba7a36SAlexey Dobriyan static const struct seq_operations locks_seq_operations = {
24617f8ada98SPavel Emelyanov 	.start	= locks_start,
24627f8ada98SPavel Emelyanov 	.next	= locks_next,
24637f8ada98SPavel Emelyanov 	.stop	= locks_stop,
24647f8ada98SPavel Emelyanov 	.show	= locks_show,
24657f8ada98SPavel Emelyanov };
2466d8ba7a36SAlexey Dobriyan 
2467d8ba7a36SAlexey Dobriyan static int locks_open(struct inode *inode, struct file *filp)
2468d8ba7a36SAlexey Dobriyan {
24697012b02aSJeff Layton 	return seq_open_private(filp, &locks_seq_operations,
24707012b02aSJeff Layton 					sizeof(struct locks_iterator));
2471d8ba7a36SAlexey Dobriyan }
2472d8ba7a36SAlexey Dobriyan 
2473d8ba7a36SAlexey Dobriyan static const struct file_operations proc_locks_operations = {
2474d8ba7a36SAlexey Dobriyan 	.open		= locks_open,
2475d8ba7a36SAlexey Dobriyan 	.read		= seq_read,
2476d8ba7a36SAlexey Dobriyan 	.llseek		= seq_lseek,
247799dc8292SJerome Marchand 	.release	= seq_release_private,
2478d8ba7a36SAlexey Dobriyan };
2479d8ba7a36SAlexey Dobriyan 
2480d8ba7a36SAlexey Dobriyan static int __init proc_locks_init(void)
2481d8ba7a36SAlexey Dobriyan {
2482d8ba7a36SAlexey Dobriyan 	proc_create("locks", 0, NULL, &proc_locks_operations);
2483d8ba7a36SAlexey Dobriyan 	return 0;
2484d8ba7a36SAlexey Dobriyan }
2485d8ba7a36SAlexey Dobriyan module_init(proc_locks_init);
24867f8ada98SPavel Emelyanov #endif
24877f8ada98SPavel Emelyanov 
24881da177e4SLinus Torvalds /**
24891da177e4SLinus Torvalds  *	lock_may_read - checks that the region is free of locks
24901da177e4SLinus Torvalds  *	@inode: the inode that is being read
24911da177e4SLinus Torvalds  *	@start: the first byte to read
24921da177e4SLinus Torvalds  *	@len: the number of bytes to read
24931da177e4SLinus Torvalds  *
24941da177e4SLinus Torvalds  *	Emulates Windows locking requirements.  Whole-file
24951da177e4SLinus Torvalds  *	mandatory locks (share modes) can prohibit a read and
24961da177e4SLinus Torvalds  *	byte-range POSIX locks can prohibit a read if they overlap.
24971da177e4SLinus Torvalds  *
24981da177e4SLinus Torvalds  *	N.B. this function is only ever called
24991da177e4SLinus Torvalds  *	from knfsd and ownership of locks is never checked.
25001da177e4SLinus Torvalds  */
25011da177e4SLinus Torvalds int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
25021da177e4SLinus Torvalds {
25031da177e4SLinus Torvalds 	struct file_lock *fl;
25041da177e4SLinus Torvalds 	int result = 1;
25051c8c601aSJeff Layton 
25061c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
25071da177e4SLinus Torvalds 	for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
25081da177e4SLinus Torvalds 		if (IS_POSIX(fl)) {
25091da177e4SLinus Torvalds 			if (fl->fl_type == F_RDLCK)
25101da177e4SLinus Torvalds 				continue;
25111da177e4SLinus Torvalds 			if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
25121da177e4SLinus Torvalds 				continue;
25131da177e4SLinus Torvalds 		} else if (IS_FLOCK(fl)) {
25141da177e4SLinus Torvalds 			if (!(fl->fl_type & LOCK_MAND))
25151da177e4SLinus Torvalds 				continue;
25161da177e4SLinus Torvalds 			if (fl->fl_type & LOCK_READ)
25171da177e4SLinus Torvalds 				continue;
25181da177e4SLinus Torvalds 		} else
25191da177e4SLinus Torvalds 			continue;
25201da177e4SLinus Torvalds 		result = 0;
25211da177e4SLinus Torvalds 		break;
25221da177e4SLinus Torvalds 	}
25231c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
25241da177e4SLinus Torvalds 	return result;
25251da177e4SLinus Torvalds }
25261da177e4SLinus Torvalds 
25271da177e4SLinus Torvalds EXPORT_SYMBOL(lock_may_read);
25281da177e4SLinus Torvalds 
25291da177e4SLinus Torvalds /**
25301da177e4SLinus Torvalds  *	lock_may_write - checks that the region is free of locks
25311da177e4SLinus Torvalds  *	@inode: the inode that is being written
25321da177e4SLinus Torvalds  *	@start: the first byte to write
25331da177e4SLinus Torvalds  *	@len: the number of bytes to write
25341da177e4SLinus Torvalds  *
25351da177e4SLinus Torvalds  *	Emulates Windows locking requirements.  Whole-file
25361da177e4SLinus Torvalds  *	mandatory locks (share modes) can prohibit a write and
25371da177e4SLinus Torvalds  *	byte-range POSIX locks can prohibit a write if they overlap.
25381da177e4SLinus Torvalds  *
25391da177e4SLinus Torvalds  *	N.B. this function is only ever called
25401da177e4SLinus Torvalds  *	from knfsd and ownership of locks is never checked.
25411da177e4SLinus Torvalds  */
25421da177e4SLinus Torvalds int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
25431da177e4SLinus Torvalds {
25441da177e4SLinus Torvalds 	struct file_lock *fl;
25451da177e4SLinus Torvalds 	int result = 1;
25461c8c601aSJeff Layton 
25471c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
25481da177e4SLinus Torvalds 	for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
25491da177e4SLinus Torvalds 		if (IS_POSIX(fl)) {
25501da177e4SLinus Torvalds 			if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
25511da177e4SLinus Torvalds 				continue;
25521da177e4SLinus Torvalds 		} else if (IS_FLOCK(fl)) {
25531da177e4SLinus Torvalds 			if (!(fl->fl_type & LOCK_MAND))
25541da177e4SLinus Torvalds 				continue;
25551da177e4SLinus Torvalds 			if (fl->fl_type & LOCK_WRITE)
25561da177e4SLinus Torvalds 				continue;
25571da177e4SLinus Torvalds 		} else
25581da177e4SLinus Torvalds 			continue;
25591da177e4SLinus Torvalds 		result = 0;
25601da177e4SLinus Torvalds 		break;
25611da177e4SLinus Torvalds 	}
25621c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
25631da177e4SLinus Torvalds 	return result;
25641da177e4SLinus Torvalds }
25651da177e4SLinus Torvalds 
25661da177e4SLinus Torvalds EXPORT_SYMBOL(lock_may_write);
25671da177e4SLinus Torvalds 
25681da177e4SLinus Torvalds static int __init filelock_init(void)
25691da177e4SLinus Torvalds {
25707012b02aSJeff Layton 	int i;
25717012b02aSJeff Layton 
25721da177e4SLinus Torvalds 	filelock_cache = kmem_cache_create("file_lock_cache",
2573ee19cc40SMiklos Szeredi 			sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2574ee19cc40SMiklos Szeredi 
25757012b02aSJeff Layton 	lg_lock_init(&file_lock_lglock, "file_lock_lglock");
25767012b02aSJeff Layton 
25777012b02aSJeff Layton 	for_each_possible_cpu(i)
25787012b02aSJeff Layton 		INIT_HLIST_HEAD(per_cpu_ptr(&file_lock_list, i));
25797012b02aSJeff Layton 
25801da177e4SLinus Torvalds 	return 0;
25811da177e4SLinus Torvalds }
25821da177e4SLinus Torvalds 
25831da177e4SLinus Torvalds core_initcall(filelock_init);
2584