blob: 6d0949880ebd569ac2f4a0fbf060ee5cc9eb7f15 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/locks.c
3 *
4 * Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls.
5 * Doug Evans (dje@spiff.uucp), August 07, 1992
6 *
7 * Deadlock detection added.
8 * FIXME: one thing isn't handled yet:
9 * - mandatory locks (requires lots of changes elsewhere)
10 * Kelly Carmichael (kelly@[142.24.8.65]), September 17, 1994.
11 *
12 * Miscellaneous edits, and a total rewrite of posix_lock_file() code.
13 * Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994
14 *
15 * Converted file_lock_table to a linked list from an array, which eliminates
16 * the limits on how many active file locks are open.
17 * Chad Page (pageone@netcom.com), November 27, 1994
18 *
19 * Removed dependency on file descriptors. dup()'ed file descriptors now
20 * get the same locks as the original file descriptors, and a close() on
21 * any file descriptor removes ALL the locks on the file for the current
22 * process. Since locks still depend on the process id, locks are inherited
23 * after an exec() but not after a fork(). This agrees with POSIX, and both
24 * BSD and SVR4 practice.
25 * Andy Walker (andy@lysaker.kvaerner.no), February 14, 1995
26 *
27 * Scrapped free list which is redundant now that we allocate locks
28 * dynamically with kmalloc()/kfree().
29 * Andy Walker (andy@lysaker.kvaerner.no), February 21, 1995
30 *
31 * Implemented two lock personalities - FL_FLOCK and FL_POSIX.
32 *
33 * FL_POSIX locks are created with calls to fcntl() and lockf() through the
34 * fcntl() system call. They have the semantics described above.
35 *
36 * FL_FLOCK locks are created with calls to flock(), through the flock()
37 * system call, which is new. Old C libraries implement flock() via fcntl()
38 * and will continue to use the old, broken implementation.
39 *
40 * FL_FLOCK locks follow the 4.4 BSD flock() semantics. They are associated
41 * with a file pointer (filp). As a result they can be shared by a parent
42 * process and its children after a fork(). They are removed when the last
43 * file descriptor referring to the file pointer is closed (unless explicitly
44 * unlocked).
45 *
46 * FL_FLOCK locks never deadlock, an existing lock is always removed before
47 * upgrading from shared to exclusive (or vice versa). When this happens
48 * any processes blocked by the current lock are woken up and allowed to
49 * run before the new lock is applied.
50 * Andy Walker (andy@lysaker.kvaerner.no), June 09, 1995
51 *
52 * Removed some race conditions in flock_lock_file(), marked other possible
53 * races. Just grep for FIXME to see them.
54 * Dmitry Gorodchanin (pgmdsg@ibi.com), February 09, 1996.
55 *
56 * Addressed Dmitry's concerns. Deadlock checking no longer recursive.
57 * Lock allocation changed to GFP_ATOMIC as we can't afford to sleep
58 * once we've checked for blocking and deadlocking.
59 * Andy Walker (andy@lysaker.kvaerner.no), April 03, 1996.
60 *
61 * Initial implementation of mandatory locks. SunOS turned out to be
62 * a rotten model, so I implemented the "obvious" semantics.
Paul Bolle395cf962011-08-15 02:02:26 +020063 * See 'Documentation/filesystems/mandatory-locking.txt' for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996.
65 *
66 * Don't allow mandatory locks on mmap()'ed files. Added simple functions to
67 * check if a file has mandatory locks, used by mmap(), open() and creat() to
68 * see if system call should be rejected. Ref. HP-UX/SunOS/Solaris Reference
69 * Manual, Section 2.
70 * Andy Walker (andy@lysaker.kvaerner.no), April 09, 1996.
71 *
72 * Tidied up block list handling. Added '/proc/locks' interface.
73 * Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996.
74 *
75 * Fixed deadlock condition for pathological code that mixes calls to
76 * flock() and fcntl().
77 * Andy Walker (andy@lysaker.kvaerner.no), April 29, 1996.
78 *
79 * Allow only one type of locking scheme (FL_POSIX or FL_FLOCK) to be in use
80 * for a given file at a time. Changed the CONFIG_LOCK_MANDATORY scheme to
81 * guarantee sensible behaviour in the case where file system modules might
82 * be compiled with different options than the kernel itself.
83 * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
84 *
85 * Added a couple of missing wake_up() calls. Thanks to Thomas Meckel
86 * (Thomas.Meckel@mni.fh-giessen.de) for spotting this.
87 * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
88 *
89 * Changed FL_POSIX locks to use the block list in the same way as FL_FLOCK
90 * locks. Changed process synchronisation to avoid dereferencing locks that
91 * have already been freed.
92 * Andy Walker (andy@lysaker.kvaerner.no), Sep 21, 1996.
93 *
94 * Made the block list a circular list to minimise searching in the list.
95 * Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996.
96 *
97 * Made mandatory locking a mount option. Default is not to allow mandatory
98 * locking.
99 * Andy Walker (andy@lysaker.kvaerner.no), Oct 04, 1996.
100 *
101 * Some adaptations for NFS support.
102 * Olaf Kirch (okir@monad.swb.de), Dec 1996,
103 *
104 * Fixed /proc/locks interface so that we can't overrun the buffer we are handed.
105 * Andy Walker (andy@lysaker.kvaerner.no), May 12, 1997.
106 *
107 * Use slab allocator instead of kmalloc/kfree.
108 * Use generic list implementation from <linux/list.h>.
109 * Sped up posix_locks_deadlock by only considering blocked locks.
110 * Matthew Wilcox <willy@debian.org>, March, 2000.
111 *
112 * Leases and LOCK_MAND
113 * Matthew Wilcox <willy@debian.org>, June, 2000.
114 * Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000.
115 */
116
117#include <linux/capability.h>
118#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -0400119#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#include <linux/fs.h>
121#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <linux/security.h>
123#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include <linux/syscalls.h>
125#include <linux/time.h>
Dipankar Sarma4fb3a532005-09-16 19:28:13 -0700126#include <linux/rcupdate.h>
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000127#include <linux/pid_namespace.h>
Jeff Layton48f74182013-06-21 08:58:18 -0400128#include <linux/hashtable.h>
Jeff Layton7012b022013-06-21 08:58:22 -0400129#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Jeff Layton62af4f12014-05-09 14:13:05 -0400131#define CREATE_TRACE_POINTS
132#include <trace/events/filelock.h>
133
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -0800134#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
137#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
Christoph Hellwig11afe9f2015-01-21 19:17:03 +0100138#define IS_LEASE(fl) (fl->fl_flags & (FL_LEASE|FL_DELEG|FL_LAYOUT))
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400139#define IS_OFDLCK(fl) (fl->fl_flags & FL_OFDLCK)
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -0400140#define IS_REMOTELCK(fl) (fl->fl_pid <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Miklos Szeredic568d682016-09-16 12:44:20 +0200142static inline bool is_remote_lock(struct file *filp)
143{
144 return likely(!(filp->f_path.dentry->d_sb->s_flags & MS_NOREMOTELOCK));
145}
146
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400147static bool lease_breaking(struct file_lock *fl)
148{
J. Bruce Fields778fc542011-07-26 18:25:49 -0400149 return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
150}
151
152static int target_leasetype(struct file_lock *fl)
153{
154 if (fl->fl_flags & FL_UNLOCK_PENDING)
155 return F_UNLCK;
156 if (fl->fl_flags & FL_DOWNGRADE_PENDING)
157 return F_RDLCK;
158 return fl->fl_type;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400159}
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161int leases_enable = 1;
162int lease_break_time = 45;
163
Jeff Layton1c8c6012013-06-21 08:58:15 -0400164/*
Jeff Layton7012b022013-06-21 08:58:22 -0400165 * The global file_lock_list is only used for displaying /proc/locks, so we
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200166 * keep a list on each CPU, with each list protected by its own spinlock.
167 * Global serialization is done using file_rwsem.
168 *
169 * Note that alterations to the list also require that the relevant flc_lock is
170 * held.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400171 */
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200172struct file_lock_list_struct {
173 spinlock_t lock;
174 struct hlist_head hlist;
175};
176static DEFINE_PER_CPU(struct file_lock_list_struct, file_lock_list);
Peter Zijlstraaba37662015-06-22 14:16:33 +0200177DEFINE_STATIC_PERCPU_RWSEM(file_rwsem);
Jeff Layton88974692013-06-21 08:58:14 -0400178
Jeff Layton1c8c6012013-06-21 08:58:15 -0400179/*
Jeff Layton48f74182013-06-21 08:58:18 -0400180 * The blocked_hash is used to find POSIX lock loops for deadlock detection.
Jeff Layton7b2296a2013-06-21 08:58:20 -0400181 * It is protected by blocked_lock_lock.
Jeff Layton48f74182013-06-21 08:58:18 -0400182 *
183 * We hash locks by lockowner in order to optimize searching for the lock a
184 * particular lockowner is waiting on.
185 *
186 * FIXME: make this value scale via some heuristic? We generally will want more
187 * buckets when we have more lockowners holding locks, but that's a little
188 * difficult to determine without knowing what the workload will look like.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400189 */
Jeff Layton48f74182013-06-21 08:58:18 -0400190#define BLOCKED_HASH_BITS 7
191static DEFINE_HASHTABLE(blocked_hash, BLOCKED_HASH_BITS);
Jeff Layton88974692013-06-21 08:58:14 -0400192
Jeff Layton1c8c6012013-06-21 08:58:15 -0400193/*
Jeff Layton7b2296a2013-06-21 08:58:20 -0400194 * This lock protects the blocked_hash. Generally, if you're accessing it, you
195 * want to be holding this lock.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400196 *
197 * In addition, it also protects the fl->fl_block list, and the fl->fl_next
198 * pointer for file_lock structures that are acting as lock requests (in
199 * contrast to those that are acting as records of acquired locks).
200 *
201 * Note that when we acquire this lock in order to change the above fields,
Jeff Layton6109c852015-01-16 15:05:57 -0500202 * we often hold the flc_lock as well. In certain cases, when reading the fields
Jeff Layton1c8c6012013-06-21 08:58:15 -0400203 * protected by this lock, we can skip acquiring it iff we already hold the
Jeff Layton6109c852015-01-16 15:05:57 -0500204 * flc_lock.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400205 *
206 * In particular, adding an entry to the fl_block list requires that you hold
Jeff Layton6109c852015-01-16 15:05:57 -0500207 * both the flc_lock and the blocked_lock_lock (acquired in that order).
208 * Deleting an entry from the list however only requires the file_lock_lock.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400209 */
Jeff Layton7b2296a2013-06-21 08:58:20 -0400210static DEFINE_SPINLOCK(blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Jeff Layton4a075e32015-01-16 15:05:54 -0500212static struct kmem_cache *flctx_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -0800213static struct kmem_cache *filelock_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Jeff Layton4a075e32015-01-16 15:05:54 -0500215static struct file_lock_context *
Jeff Layton5c1c6692015-04-03 09:04:03 -0400216locks_get_lock_context(struct inode *inode, int type)
Jeff Layton4a075e32015-01-16 15:05:54 -0500217{
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200218 struct file_lock_context *ctx;
Jeff Layton4a075e32015-01-16 15:05:54 -0500219
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200220 /* paired with cmpxchg() below */
221 ctx = smp_load_acquire(&inode->i_flctx);
222 if (likely(ctx) || type == F_UNLCK)
Jeff Layton4a075e32015-01-16 15:05:54 -0500223 goto out;
224
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200225 ctx = kmem_cache_alloc(flctx_cache, GFP_KERNEL);
226 if (!ctx)
Jeff Layton4a075e32015-01-16 15:05:54 -0500227 goto out;
228
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200229 spin_lock_init(&ctx->flc_lock);
230 INIT_LIST_HEAD(&ctx->flc_flock);
231 INIT_LIST_HEAD(&ctx->flc_posix);
232 INIT_LIST_HEAD(&ctx->flc_lease);
Jeff Layton4a075e32015-01-16 15:05:54 -0500233
234 /*
235 * Assign the pointer if it's not already assigned. If it is, then
236 * free the context we just allocated.
237 */
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200238 if (cmpxchg(&inode->i_flctx, NULL, ctx)) {
239 kmem_cache_free(flctx_cache, ctx);
240 ctx = smp_load_acquire(&inode->i_flctx);
241 }
Jeff Layton4a075e32015-01-16 15:05:54 -0500242out:
Jeff Layton18909102016-01-06 21:26:10 -0500243 trace_locks_get_lock_context(inode, type, ctx);
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200244 return ctx;
Jeff Layton4a075e32015-01-16 15:05:54 -0500245}
246
Jeff Laytone24dada2016-01-06 21:28:41 -0500247static void
248locks_dump_ctx_list(struct list_head *list, char *list_type)
249{
250 struct file_lock *fl;
251
252 list_for_each_entry(fl, list, fl_list) {
253 pr_warn("%s: fl_owner=%p fl_flags=0x%x fl_type=0x%x fl_pid=%u\n", list_type, fl->fl_owner, fl->fl_flags, fl->fl_type, fl->fl_pid);
254 }
255}
256
257static void
258locks_check_ctx_lists(struct inode *inode)
259{
260 struct file_lock_context *ctx = inode->i_flctx;
261
262 if (unlikely(!list_empty(&ctx->flc_flock) ||
263 !list_empty(&ctx->flc_posix) ||
264 !list_empty(&ctx->flc_lease))) {
265 pr_warn("Leaked locks on dev=0x%x:0x%x ino=0x%lx:\n",
266 MAJOR(inode->i_sb->s_dev), MINOR(inode->i_sb->s_dev),
267 inode->i_ino);
268 locks_dump_ctx_list(&ctx->flc_flock, "FLOCK");
269 locks_dump_ctx_list(&ctx->flc_posix, "POSIX");
270 locks_dump_ctx_list(&ctx->flc_lease, "LEASE");
271 }
272}
273
Jeff Layton4a075e32015-01-16 15:05:54 -0500274void
Jeff Laytonf27a0fe2016-01-07 15:08:51 -0500275locks_free_lock_context(struct inode *inode)
Jeff Layton4a075e32015-01-16 15:05:54 -0500276{
Jeff Laytonf27a0fe2016-01-07 15:08:51 -0500277 struct file_lock_context *ctx = inode->i_flctx;
278
Jeff Laytone24dada2016-01-06 21:28:41 -0500279 if (unlikely(ctx)) {
280 locks_check_ctx_lists(inode);
Jeff Layton4a075e32015-01-16 15:05:54 -0500281 kmem_cache_free(flctx_cache, ctx);
282 }
283}
284
Miklos Szerediee19cc42011-07-07 13:06:09 +0200285static void locks_init_lock_heads(struct file_lock *fl)
Miklos Szeredia51cb912011-07-06 12:33:55 +0200286{
Jeff Layton139ca042013-06-21 08:58:17 -0400287 INIT_HLIST_NODE(&fl->fl_link);
Jeff Layton6dee60f2015-01-16 15:05:54 -0500288 INIT_LIST_HEAD(&fl->fl_list);
Miklos Szerediee19cc42011-07-07 13:06:09 +0200289 INIT_LIST_HEAD(&fl->fl_block);
290 init_waitqueue_head(&fl->fl_wait);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/* Allocate an empty lock structure. */
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200294struct file_lock *locks_alloc_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200296 struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200297
298 if (fl)
Miklos Szerediee19cc42011-07-07 13:06:09 +0200299 locks_init_lock_heads(fl);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200300
301 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200303EXPORT_SYMBOL_GPL(locks_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500305void locks_release_private(struct file_lock *fl)
Trond Myklebust47831f32006-03-20 13:44:05 -0500306{
307 if (fl->fl_ops) {
308 if (fl->fl_ops->fl_release_private)
309 fl->fl_ops->fl_release_private(fl);
310 fl->fl_ops = NULL;
311 }
Trond Myklebust47831f32006-03-20 13:44:05 -0500312
Kinglong Mee5c97d7b2014-08-22 10:18:43 -0400313 if (fl->fl_lmops) {
Jeff Laytoncae80b32015-04-03 09:04:04 -0400314 if (fl->fl_lmops->lm_put_owner) {
315 fl->fl_lmops->lm_put_owner(fl->fl_owner);
316 fl->fl_owner = NULL;
317 }
Kinglong Mee5c97d7b2014-08-22 10:18:43 -0400318 fl->fl_lmops = NULL;
319 }
Trond Myklebust47831f32006-03-20 13:44:05 -0500320}
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500321EXPORT_SYMBOL_GPL(locks_release_private);
Trond Myklebust47831f32006-03-20 13:44:05 -0500322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/* Free a lock which is not in use. */
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400324void locks_free_lock(struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Miklos Szeredi5ce29642006-03-31 02:30:29 -0800326 BUG_ON(waitqueue_active(&fl->fl_wait));
Jeff Layton6dee60f2015-01-16 15:05:54 -0500327 BUG_ON(!list_empty(&fl->fl_list));
Miklos Szeredi5ce29642006-03-31 02:30:29 -0800328 BUG_ON(!list_empty(&fl->fl_block));
Jeff Layton139ca042013-06-21 08:58:17 -0400329 BUG_ON(!hlist_unhashed(&fl->fl_link));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Trond Myklebust47831f32006-03-20 13:44:05 -0500331 locks_release_private(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 kmem_cache_free(filelock_cache, fl);
333}
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400334EXPORT_SYMBOL(locks_free_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jeff Laytoned9814d2014-08-11 14:20:31 -0400336static void
337locks_dispose_list(struct list_head *dispose)
338{
339 struct file_lock *fl;
340
341 while (!list_empty(dispose)) {
Jeff Layton6dee60f2015-01-16 15:05:54 -0500342 fl = list_first_entry(dispose, struct file_lock, fl_list);
343 list_del_init(&fl->fl_list);
Jeff Laytoned9814d2014-08-11 14:20:31 -0400344 locks_free_lock(fl);
345 }
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348void locks_init_lock(struct file_lock *fl)
349{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200350 memset(fl, 0, sizeof(struct file_lock));
351 locks_init_lock_heads(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354EXPORT_SYMBOL(locks_init_lock);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*
357 * Initialize a new lock from an existing file_lock structure.
358 */
Kinglong Mee3fe0fff12014-08-22 10:18:42 -0400359void locks_copy_conflock(struct file_lock *new, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 new->fl_owner = fl->fl_owner;
362 new->fl_pid = fl->fl_pid;
Trond Myklebust09969052006-03-20 13:44:38 -0500363 new->fl_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 new->fl_flags = fl->fl_flags;
365 new->fl_type = fl->fl_type;
366 new->fl_start = fl->fl_start;
367 new->fl_end = fl->fl_end;
Kinglong Meef3282962014-08-22 10:18:43 -0400368 new->fl_lmops = fl->fl_lmops;
Trond Myklebust09969052006-03-20 13:44:38 -0500369 new->fl_ops = NULL;
Kinglong Meef3282962014-08-22 10:18:43 -0400370
371 if (fl->fl_lmops) {
372 if (fl->fl_lmops->lm_get_owner)
Jeff Laytoncae80b32015-04-03 09:04:04 -0400373 fl->fl_lmops->lm_get_owner(fl->fl_owner);
Kinglong Meef3282962014-08-22 10:18:43 -0400374 }
Trond Myklebust09969052006-03-20 13:44:38 -0500375}
Kinglong Mee3fe0fff12014-08-22 10:18:42 -0400376EXPORT_SYMBOL(locks_copy_conflock);
Trond Myklebust09969052006-03-20 13:44:38 -0500377
378void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
379{
Jeff Layton566709b2014-08-11 14:09:35 -0400380 /* "new" must be a freshly-initialized lock */
381 WARN_ON_ONCE(new->fl_ops);
Trond Myklebust09969052006-03-20 13:44:38 -0500382
Kinglong Mee3fe0fff12014-08-22 10:18:42 -0400383 locks_copy_conflock(new, fl);
Kinglong Meef3282962014-08-22 10:18:43 -0400384
Trond Myklebust09969052006-03-20 13:44:38 -0500385 new->fl_file = fl->fl_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 new->fl_ops = fl->fl_ops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500387
Kinglong Meef3282962014-08-22 10:18:43 -0400388 if (fl->fl_ops) {
389 if (fl->fl_ops->fl_copy_lock)
390 fl->fl_ops->fl_copy_lock(new, fl);
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394EXPORT_SYMBOL(locks_copy_lock);
395
396static inline int flock_translate_cmd(int cmd) {
397 if (cmd & LOCK_MAND)
398 return cmd & (LOCK_MAND | LOCK_RW);
399 switch (cmd) {
400 case LOCK_SH:
401 return F_RDLCK;
402 case LOCK_EX:
403 return F_WRLCK;
404 case LOCK_UN:
405 return F_UNLCK;
406 }
407 return -EINVAL;
408}
409
410/* Fill in a file_lock structure with an appropriate FLOCK lock. */
Jeff Layton6e129d002014-09-04 10:25:06 -0400411static struct file_lock *
412flock_make_lock(struct file *filp, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct file_lock *fl;
415 int type = flock_translate_cmd(cmd);
Jeff Layton6e129d002014-09-04 10:25:06 -0400416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (type < 0)
Jeff Layton6e129d002014-09-04 10:25:06 -0400418 return ERR_PTR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 fl = locks_alloc_lock();
421 if (fl == NULL)
Jeff Layton6e129d002014-09-04 10:25:06 -0400422 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 fl->fl_file = filp;
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +0200425 fl->fl_owner = filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 fl->fl_pid = current->tgid;
427 fl->fl_flags = FL_FLOCK;
428 fl->fl_type = type;
429 fl->fl_end = OFFSET_MAX;
430
Jeff Layton6e129d002014-09-04 10:25:06 -0400431 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400434static int assign_type(struct file_lock *fl, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 switch (type) {
437 case F_RDLCK:
438 case F_WRLCK:
439 case F_UNLCK:
440 fl->fl_type = type;
441 break;
442 default:
443 return -EINVAL;
444 }
445 return 0;
446}
447
J. Bruce Fieldsef12e722014-02-03 12:13:08 -0500448static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
449 struct flock64 *l)
450{
451 switch (l->l_whence) {
452 case SEEK_SET:
453 fl->fl_start = 0;
454 break;
455 case SEEK_CUR:
456 fl->fl_start = filp->f_pos;
457 break;
458 case SEEK_END:
459 fl->fl_start = i_size_read(file_inode(filp));
460 break;
461 default:
462 return -EINVAL;
463 }
464 if (l->l_start > OFFSET_MAX - fl->fl_start)
465 return -EOVERFLOW;
466 fl->fl_start += l->l_start;
467 if (fl->fl_start < 0)
468 return -EINVAL;
469
470 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
471 POSIX-2001 defines it. */
472 if (l->l_len > 0) {
473 if (l->l_len - 1 > OFFSET_MAX - fl->fl_start)
474 return -EOVERFLOW;
475 fl->fl_end = fl->fl_start + l->l_len - 1;
476
477 } else if (l->l_len < 0) {
478 if (fl->fl_start + l->l_len < 0)
479 return -EINVAL;
480 fl->fl_end = fl->fl_start - 1;
481 fl->fl_start += l->l_len;
482 } else
483 fl->fl_end = OFFSET_MAX;
484
485 fl->fl_owner = current->files;
486 fl->fl_pid = current->tgid;
487 fl->fl_file = filp;
488 fl->fl_flags = FL_POSIX;
489 fl->fl_ops = NULL;
490 fl->fl_lmops = NULL;
491
492 return assign_type(fl, l->l_type);
493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
496 * style lock.
497 */
498static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
499 struct flock *l)
500{
J. Bruce Fieldsef12e722014-02-03 12:13:08 -0500501 struct flock64 ll = {
502 .l_type = l->l_type,
503 .l_whence = l->l_whence,
504 .l_start = l->l_start,
505 .l_len = l->l_len,
506 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
J. Bruce Fieldsef12e722014-02-03 12:13:08 -0500508 return flock64_to_posix_lock(filp, fl, &ll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/* default lease lock manager operations */
Jeff Layton4d01b7f2014-09-01 15:06:54 -0400512static bool
513lease_break_callback(struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
Jeff Layton4d01b7f2014-09-01 15:06:54 -0400516 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Jeff Layton1c7dd2f2014-08-22 10:55:47 -0400519static void
520lease_setup(struct file_lock *fl, void **priv)
521{
522 struct file *filp = fl->fl_file;
523 struct fasync_struct *fa = *priv;
524
525 /*
526 * fasync_insert_entry() returns the old entry if any. If there was no
527 * old entry, then it used "priv" and inserted it into the fasync list.
528 * Clear the pointer to indicate that it shouldn't be freed.
529 */
530 if (!fasync_insert_entry(fa->fa_fd, filp, &fl->fl_fasync, fa))
531 *priv = NULL;
532
533 __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
534}
535
Alexey Dobriyan7b021962009-09-21 17:01:12 -0700536static const struct lock_manager_operations lease_manager_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400537 .lm_break = lease_break_callback,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400538 .lm_change = lease_modify,
Jeff Layton1c7dd2f2014-08-22 10:55:47 -0400539 .lm_setup = lease_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540};
541
542/*
543 * Initialize a lease, use the default lock manager operations
544 */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400545static int lease_init(struct file *filp, long type, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 {
Trond Myklebust75dff552006-05-07 23:02:42 -0400547 if (assign_type(fl, type) != 0)
548 return -EINVAL;
549
Jeff Layton7ca76312014-09-01 19:04:48 -0400550 fl->fl_owner = filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 fl->fl_pid = current->tgid;
552
553 fl->fl_file = filp;
554 fl->fl_flags = FL_LEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 fl->fl_start = 0;
556 fl->fl_end = OFFSET_MAX;
557 fl->fl_ops = NULL;
558 fl->fl_lmops = &lease_manager_ops;
559 return 0;
560}
561
562/* Allocate a file_lock initialised to this type of lease */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400563static struct file_lock *lease_alloc(struct file *filp, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 struct file_lock *fl = locks_alloc_lock();
Trond Myklebust75dff552006-05-07 23:02:42 -0400566 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (fl == NULL)
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500569 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 error = lease_init(filp, type, fl);
Trond Myklebust75dff552006-05-07 23:02:42 -0400572 if (error) {
573 locks_free_lock(fl);
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500574 return ERR_PTR(error);
Trond Myklebust75dff552006-05-07 23:02:42 -0400575 }
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500576 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579/* Check if two locks overlap each other.
580 */
581static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
582{
583 return ((fl1->fl_end >= fl2->fl_start) &&
584 (fl2->fl_end >= fl1->fl_start));
585}
586
587/*
588 * Check whether two locks have the same owner.
589 */
Matt Mackall33443c42006-01-08 01:05:22 -0800590static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400592 if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return fl2->fl_lmops == fl1->fl_lmops &&
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400594 fl1->fl_lmops->lm_compare_owner(fl1, fl2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return fl1->fl_owner == fl2->fl_owner;
596}
597
Jeff Layton6109c852015-01-16 15:05:57 -0500598/* Must be called with the flc_lock held! */
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500599static void locks_insert_global_locks(struct file_lock *fl)
Jeff Layton88974692013-06-21 08:58:14 -0400600{
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200601 struct file_lock_list_struct *fll = this_cpu_ptr(&file_lock_list);
602
Peter Zijlstraaba37662015-06-22 14:16:33 +0200603 percpu_rwsem_assert_held(&file_rwsem);
604
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200605 spin_lock(&fll->lock);
Jeff Layton7012b022013-06-21 08:58:22 -0400606 fl->fl_link_cpu = smp_processor_id();
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200607 hlist_add_head(&fl->fl_link, &fll->hlist);
608 spin_unlock(&fll->lock);
Jeff Layton88974692013-06-21 08:58:14 -0400609}
610
Jeff Layton6109c852015-01-16 15:05:57 -0500611/* Must be called with the flc_lock held! */
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500612static void locks_delete_global_locks(struct file_lock *fl)
Jeff Layton88974692013-06-21 08:58:14 -0400613{
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200614 struct file_lock_list_struct *fll;
615
Peter Zijlstraaba37662015-06-22 14:16:33 +0200616 percpu_rwsem_assert_held(&file_rwsem);
617
Jeff Layton7012b022013-06-21 08:58:22 -0400618 /*
619 * Avoid taking lock if already unhashed. This is safe since this check
Jeff Layton6109c852015-01-16 15:05:57 -0500620 * is done while holding the flc_lock, and new insertions into the list
Jeff Layton7012b022013-06-21 08:58:22 -0400621 * also require that it be held.
622 */
623 if (hlist_unhashed(&fl->fl_link))
624 return;
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200625
626 fll = per_cpu_ptr(&file_lock_list, fl->fl_link_cpu);
627 spin_lock(&fll->lock);
Jeff Layton139ca042013-06-21 08:58:17 -0400628 hlist_del_init(&fl->fl_link);
Peter Zijlstra7c3f6542015-06-22 14:16:34 +0200629 spin_unlock(&fll->lock);
Jeff Layton88974692013-06-21 08:58:14 -0400630}
631
Jeff Layton3999e492013-06-21 08:58:19 -0400632static unsigned long
633posix_owner_key(struct file_lock *fl)
634{
635 if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
636 return fl->fl_lmops->lm_owner_key(fl);
637 return (unsigned long)fl->fl_owner;
638}
639
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500640static void locks_insert_global_blocked(struct file_lock *waiter)
Jeff Layton88974692013-06-21 08:58:14 -0400641{
Daniel Wagner663d5af2015-04-03 09:04:03 -0400642 lockdep_assert_held(&blocked_lock_lock);
643
Jeff Layton3999e492013-06-21 08:58:19 -0400644 hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
Jeff Layton88974692013-06-21 08:58:14 -0400645}
646
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500647static void locks_delete_global_blocked(struct file_lock *waiter)
Jeff Layton88974692013-06-21 08:58:14 -0400648{
Daniel Wagner663d5af2015-04-03 09:04:03 -0400649 lockdep_assert_held(&blocked_lock_lock);
650
Jeff Layton48f74182013-06-21 08:58:18 -0400651 hash_del(&waiter->fl_link);
Jeff Layton88974692013-06-21 08:58:14 -0400652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/* Remove waiter from blocker's block list.
655 * When blocker ends up pointing to itself then the list is empty.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400656 *
Jeff Layton7b2296a2013-06-21 08:58:20 -0400657 * Must be called with blocked_lock_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 */
Matt Mackall33443c42006-01-08 01:05:22 -0800659static void __locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Jeff Layton88974692013-06-21 08:58:14 -0400661 locks_delete_global_blocked(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 list_del_init(&waiter->fl_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 waiter->fl_next = NULL;
664}
665
Jeff Layton1a9e64a2013-06-21 08:58:10 -0400666static void locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Jeff Layton7b2296a2013-06-21 08:58:20 -0400668 spin_lock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 __locks_delete_block(waiter);
Jeff Layton7b2296a2013-06-21 08:58:20 -0400670 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
673/* Insert waiter into blocker's block list.
674 * We use a circular list so that processes can be easily woken up in
675 * the order they blocked. The documentation doesn't require this but
676 * it seems like the reasonable thing to do.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400677 *
Jeff Layton6109c852015-01-16 15:05:57 -0500678 * Must be called with both the flc_lock and blocked_lock_lock held. The
679 * fl_block list itself is protected by the blocked_lock_lock, but by ensuring
680 * that the flc_lock is also held on insertions we can avoid taking the
681 * blocked_lock_lock in some cases when we see that the fl_block list is empty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 */
Jeff Layton1c8c6012013-06-21 08:58:15 -0400683static void __locks_insert_block(struct file_lock *blocker,
684 struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
J. Bruce Fields6dc0fe82006-03-26 01:37:24 -0800686 BUG_ON(!list_empty(&waiter->fl_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 waiter->fl_next = blocker;
Jeff Layton88974692013-06-21 08:58:14 -0400688 list_add_tail(&waiter->fl_block, &blocker->fl_block);
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400689 if (IS_POSIX(blocker) && !IS_OFDLCK(blocker))
Jeff Layton1c8c6012013-06-21 08:58:15 -0400690 locks_insert_global_blocked(waiter);
691}
692
Jeff Layton6109c852015-01-16 15:05:57 -0500693/* Must be called with flc_lock held. */
Jeff Layton1c8c6012013-06-21 08:58:15 -0400694static void locks_insert_block(struct file_lock *blocker,
695 struct file_lock *waiter)
696{
Jeff Layton7b2296a2013-06-21 08:58:20 -0400697 spin_lock(&blocked_lock_lock);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400698 __locks_insert_block(blocker, waiter);
Jeff Layton7b2296a2013-06-21 08:58:20 -0400699 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Jeff Layton1cb36012013-06-21 08:58:12 -0400702/*
703 * Wake up processes blocked waiting for blocker.
704 *
Jeff Layton6109c852015-01-16 15:05:57 -0500705 * Must be called with the inode->flc_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
707static void locks_wake_up_blocks(struct file_lock *blocker)
708{
Jeff Layton4e8c7652013-06-21 08:58:16 -0400709 /*
710 * Avoid taking global lock if list is empty. This is safe since new
Jeff Layton6109c852015-01-16 15:05:57 -0500711 * blocked requests are only added to the list under the flc_lock, and
712 * the flc_lock is always held here. Note that removal from the fl_block
713 * list does not require the flc_lock, so we must recheck list_empty()
Jeff Layton7b2296a2013-06-21 08:58:20 -0400714 * after acquiring the blocked_lock_lock.
Jeff Layton4e8c7652013-06-21 08:58:16 -0400715 */
716 if (list_empty(&blocker->fl_block))
717 return;
718
Jeff Layton7b2296a2013-06-21 08:58:20 -0400719 spin_lock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 while (!list_empty(&blocker->fl_block)) {
Pavel Emelyanovf0c1cd02007-09-19 16:44:07 +0400721 struct file_lock *waiter;
722
723 waiter = list_first_entry(&blocker->fl_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct file_lock, fl_block);
725 __locks_delete_block(waiter);
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400726 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
727 waiter->fl_lmops->lm_notify(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 else
729 wake_up(&waiter->fl_wait);
730 }
Jeff Layton7b2296a2013-06-21 08:58:20 -0400731 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Jeff Layton5263e312015-01-16 15:05:55 -0500734static void
Jeff Laytone084c1b2015-02-16 14:32:03 -0500735locks_insert_lock_ctx(struct file_lock *fl, struct list_head *before)
Jeff Layton5263e312015-01-16 15:05:55 -0500736{
Jeff Layton5263e312015-01-16 15:05:55 -0500737 list_add_tail(&fl->fl_list, before);
738 locks_insert_global_locks(fl);
739}
740
Jeff Layton8634b512015-01-16 15:05:55 -0500741static void
Jeff Laytone084c1b2015-02-16 14:32:03 -0500742locks_unlink_lock_ctx(struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Jeff Layton88974692013-06-21 08:58:14 -0400744 locks_delete_global_locks(fl);
Jeff Layton8634b512015-01-16 15:05:55 -0500745 list_del_init(&fl->fl_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 locks_wake_up_blocks(fl);
Jeff Layton24cbe782014-02-03 12:13:06 -0500747}
748
Jeff Layton5263e312015-01-16 15:05:55 -0500749static void
Jeff Laytone084c1b2015-02-16 14:32:03 -0500750locks_delete_lock_ctx(struct file_lock *fl, struct list_head *dispose)
Jeff Layton5263e312015-01-16 15:05:55 -0500751{
Jeff Laytone084c1b2015-02-16 14:32:03 -0500752 locks_unlink_lock_ctx(fl);
Jeff Layton8634b512015-01-16 15:05:55 -0500753 if (dispose)
754 list_add(&fl->fl_list, dispose);
755 else
756 locks_free_lock(fl);
Jeff Layton5263e312015-01-16 15:05:55 -0500757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759/* Determine if lock sys_fl blocks lock caller_fl. Common functionality
760 * checks for shared/exclusive status of overlapping locks.
761 */
762static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
763{
764 if (sys_fl->fl_type == F_WRLCK)
765 return 1;
766 if (caller_fl->fl_type == F_WRLCK)
767 return 1;
768 return 0;
769}
770
771/* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
772 * checking before calling the locks_conflict().
773 */
774static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
775{
776 /* POSIX locks owned by the same process do not conflict with
777 * each other.
778 */
Jeff Layton9b8c8692015-04-03 09:04:02 -0400779 if (posix_same_owner(caller_fl, sys_fl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return (0);
781
782 /* Check whether they overlap */
783 if (!locks_overlap(caller_fl, sys_fl))
784 return 0;
785
786 return (locks_conflict(caller_fl, sys_fl));
787}
788
789/* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
790 * checking before calling the locks_conflict().
791 */
792static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
793{
794 /* FLOCK locks referring to the same filp do not conflict with
795 * each other.
796 */
Jeff Layton9b8c8692015-04-03 09:04:02 -0400797 if (caller_fl->fl_file == sys_fl->fl_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return (0);
799 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
800 return 0;
801
802 return (locks_conflict(caller_fl, sys_fl));
803}
804
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400805void
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500806posix_test_lock(struct file *filp, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 struct file_lock *cfl;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500809 struct file_lock_context *ctx;
Miklos Szeredic568d682016-09-16 12:44:20 +0200810 struct inode *inode = locks_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Dmitry Vyukov128a3782015-09-21 09:43:06 +0200812 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500813 if (!ctx || list_empty_careful(&ctx->flc_posix)) {
J. Bruce Fields129a84d2007-05-10 18:38:43 -0400814 fl->fl_type = F_UNLCK;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500815 return;
816 }
817
Jeff Layton6109c852015-01-16 15:05:57 -0500818 spin_lock(&ctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500819 list_for_each_entry(cfl, &ctx->flc_posix, fl_list) {
820 if (posix_locks_conflict(fl, cfl)) {
821 locks_copy_conflock(fl, cfl);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500822 goto out;
823 }
824 }
825 fl->fl_type = F_UNLCK;
826out:
Jeff Layton6109c852015-01-16 15:05:57 -0500827 spin_unlock(&ctx->flc_lock);
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400828 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830EXPORT_SYMBOL(posix_test_lock);
831
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400832/*
833 * Deadlock detection:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400835 * We attempt to detect deadlocks that are due purely to posix file
836 * locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400838 * We assume that a task can be waiting for at most one lock at a time.
839 * So for any acquired lock, the process holding that lock may be
840 * waiting on at most one other lock. That lock in turns may be held by
841 * someone waiting for at most one other lock. Given a requested lock
842 * caller_fl which is about to wait for a conflicting lock block_fl, we
843 * follow this chain of waiters to ensure we are not about to create a
844 * cycle.
J. Bruce Fields97855b42007-10-30 11:20:02 -0400845 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400846 * Since we do this before we ever put a process to sleep on a lock, we
847 * are ensured that there is never a cycle; that is what guarantees that
848 * the while() loop in posix_locks_deadlock() eventually completes.
849 *
850 * Note: the above assumption may not be true when handling lock
851 * requests from a broken NFS client. It may also fail in the presence
852 * of tasks (such as posix threads) sharing the same open file table.
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400853 * To handle those cases, we just bail out after a few iterations.
Jeff Layton57b65322014-02-03 12:13:09 -0500854 *
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400855 * For FL_OFDLCK locks, the owner is the filp, not the files_struct.
Jeff Layton57b65322014-02-03 12:13:09 -0500856 * Because the owner is not even nominally tied to a thread of
857 * execution, the deadlock detection below can't reasonably work well. Just
858 * skip it for those.
859 *
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400860 * In principle, we could do a more limited deadlock detection on FL_OFDLCK
Jeff Layton57b65322014-02-03 12:13:09 -0500861 * locks that just checks for the case where two tasks are attempting to
862 * upgrade from read to write locks on the same inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 */
J. Bruce Fields97855b42007-10-30 11:20:02 -0400864
865#define MAX_DEADLK_ITERATIONS 10
866
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400867/* Find a lock that the owner of the given block_fl is blocking on. */
868static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
869{
870 struct file_lock *fl;
871
Jeff Layton3999e492013-06-21 08:58:19 -0400872 hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400873 if (posix_same_owner(fl, block_fl))
874 return fl->fl_next;
875 }
876 return NULL;
877}
878
Jeff Layton7b2296a2013-06-21 08:58:20 -0400879/* Must be called with the blocked_lock_lock held! */
Adrian Bunkb0904e12006-06-23 02:05:13 -0700880static int posix_locks_deadlock(struct file_lock *caller_fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct file_lock *block_fl)
882{
J. Bruce Fields97855b42007-10-30 11:20:02 -0400883 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Daniel Wagner663d5af2015-04-03 09:04:03 -0400885 lockdep_assert_held(&blocked_lock_lock);
886
Jeff Layton57b65322014-02-03 12:13:09 -0500887 /*
888 * This deadlock detector can't reasonably detect deadlocks with
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400889 * FL_OFDLCK locks, since they aren't owned by a process, per-se.
Jeff Layton57b65322014-02-03 12:13:09 -0500890 */
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400891 if (IS_OFDLCK(caller_fl))
Jeff Layton57b65322014-02-03 12:13:09 -0500892 return 0;
893
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400894 while ((block_fl = what_owner_is_waiting_for(block_fl))) {
895 if (i++ > MAX_DEADLK_ITERATIONS)
896 return 0;
897 if (posix_same_owner(caller_fl, block_fl))
898 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900 return 0;
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
J. Bruce Fields02888f42007-09-12 15:45:07 -0400904 * after any leases, but before any posix locks.
Trond Myklebustf475ae92006-06-29 16:38:32 -0400905 *
906 * Note that if called with an FL_EXISTS argument, the caller may determine
907 * whether or not a lock was successfully freed by testing the return
908 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 */
Jeff Laytonbcd7f782015-07-11 06:43:02 -0400910static int flock_lock_inode(struct inode *inode, struct file_lock *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Trond Myklebust993dfa82006-03-31 02:30:55 -0800912 struct file_lock *new_fl = NULL;
Jeff Layton5263e312015-01-16 15:05:55 -0500913 struct file_lock *fl;
914 struct file_lock_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 int error = 0;
Jeff Layton5263e312015-01-16 15:05:55 -0500916 bool found = false;
Jeff Laytoned9814d2014-08-11 14:20:31 -0400917 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Jeff Layton5c1c6692015-04-03 09:04:03 -0400919 ctx = locks_get_lock_context(inode, request->fl_type);
920 if (!ctx) {
921 if (request->fl_type != F_UNLCK)
922 return -ENOMEM;
923 return (request->fl_flags & FL_EXISTS) ? -ENOENT : 0;
924 }
Jeff Layton5263e312015-01-16 15:05:55 -0500925
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200926 if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
927 new_fl = locks_alloc_lock();
928 if (!new_fl)
929 return -ENOMEM;
930 }
931
Peter Zijlstra87709e22016-05-30 16:48:35 +0200932 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -0500933 spin_lock(&ctx->flc_lock);
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400934 if (request->fl_flags & FL_ACCESS)
935 goto find_conflict;
Pavel Emelyanov84d535a2007-09-11 16:38:13 +0400936
Jeff Layton5263e312015-01-16 15:05:55 -0500937 list_for_each_entry(fl, &ctx->flc_flock, fl_list) {
Jeff Laytonbcd7f782015-07-11 06:43:02 -0400938 if (request->fl_file != fl->fl_file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800940 if (request->fl_type == fl->fl_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 goto out;
Jeff Layton5263e312015-01-16 15:05:55 -0500942 found = true;
Jeff Laytone084c1b2015-02-16 14:32:03 -0500943 locks_delete_lock_ctx(fl, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 break;
945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Trond Myklebustf475ae92006-06-29 16:38:32 -0400947 if (request->fl_type == F_UNLCK) {
948 if ((request->fl_flags & FL_EXISTS) && !found)
949 error = -ENOENT;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800950 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -0400951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400953find_conflict:
Jeff Layton5263e312015-01-16 15:05:55 -0500954 list_for_each_entry(fl, &ctx->flc_flock, fl_list) {
Trond Myklebust993dfa82006-03-31 02:30:55 -0800955 if (!flock_locks_conflict(request, fl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 continue;
957 error = -EAGAIN;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700958 if (!(request->fl_flags & FL_SLEEP))
959 goto out;
960 error = FILE_LOCK_DEFERRED;
961 locks_insert_block(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 goto out;
963 }
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400964 if (request->fl_flags & FL_ACCESS)
965 goto out;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800966 locks_copy_lock(new_fl, request);
Jeff Laytone084c1b2015-02-16 14:32:03 -0500967 locks_insert_lock_ctx(new_fl, &ctx->flc_flock);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800968 new_fl = NULL;
Kirill Korotaev9cedc192006-06-14 17:59:35 +0400969 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971out:
Jeff Layton6109c852015-01-16 15:05:57 -0500972 spin_unlock(&ctx->flc_lock);
Peter Zijlstra87709e22016-05-30 16:48:35 +0200973 percpu_up_read_preempt_enable(&file_rwsem);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800974 if (new_fl)
975 locks_free_lock(new_fl);
Jeff Laytoned9814d2014-08-11 14:20:31 -0400976 locks_dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return error;
978}
979
Jeff Laytonb4d629a2016-01-07 18:27:42 -0500980static int posix_lock_inode(struct inode *inode, struct file_lock *request,
981 struct file_lock *conflock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500983 struct file_lock *fl, *tmp;
Miklos Szeredi39005d02006-06-23 02:05:10 -0700984 struct file_lock *new_fl = NULL;
985 struct file_lock *new_fl2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 struct file_lock *left = NULL;
987 struct file_lock *right = NULL;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500988 struct file_lock_context *ctx;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400989 int error;
990 bool added = false;
Jeff Laytoned9814d2014-08-11 14:20:31 -0400991 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Jeff Layton5c1c6692015-04-03 09:04:03 -0400993 ctx = locks_get_lock_context(inode, request->fl_type);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500994 if (!ctx)
Jeff Layton5c1c6692015-04-03 09:04:03 -0400995 return (request->fl_type == F_UNLCK) ? 0 : -ENOMEM;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
998 * We may need two file_lock structures for this operation,
999 * so we get them in advance to avoid races.
Miklos Szeredi39005d02006-06-23 02:05:10 -07001000 *
1001 * In some cases we can be sure, that no new locks will be needed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Miklos Szeredi39005d02006-06-23 02:05:10 -07001003 if (!(request->fl_flags & FL_ACCESS) &&
1004 (request->fl_type != F_UNLCK ||
1005 request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
1006 new_fl = locks_alloc_lock();
1007 new_fl2 = locks_alloc_lock();
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Peter Zijlstra87709e22016-05-30 16:48:35 +02001010 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05001011 spin_lock(&ctx->flc_lock);
Jeff Layton1cb36012013-06-21 08:58:12 -04001012 /*
1013 * New lock request. Walk all POSIX locks and look for conflicts. If
1014 * there are any, either return error or put the request on the
Jeff Layton48f74182013-06-21 08:58:18 -04001015 * blocker's list of waiters and the global blocked_hash.
Jeff Layton1cb36012013-06-21 08:58:12 -04001016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (request->fl_type != F_UNLCK) {
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001018 list_for_each_entry(fl, &ctx->flc_posix, fl_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (!posix_locks_conflict(request, fl))
1020 continue;
Andy Adamson5842add2006-03-26 01:37:26 -08001021 if (conflock)
Kinglong Mee3fe0fff12014-08-22 10:18:42 -04001022 locks_copy_conflock(conflock, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 error = -EAGAIN;
1024 if (!(request->fl_flags & FL_SLEEP))
1025 goto out;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001026 /*
1027 * Deadlock detection and insertion into the blocked
1028 * locks list must be done while holding the same lock!
1029 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 error = -EDEADLK;
Jeff Layton7b2296a2013-06-21 08:58:20 -04001031 spin_lock(&blocked_lock_lock);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001032 if (likely(!posix_locks_deadlock(request, fl))) {
1033 error = FILE_LOCK_DEFERRED;
1034 __locks_insert_block(fl, request);
1035 }
Jeff Layton7b2296a2013-06-21 08:58:20 -04001036 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 goto out;
1038 }
1039 }
1040
1041 /* If we're just looking for a conflict, we're done. */
1042 error = 0;
1043 if (request->fl_flags & FL_ACCESS)
1044 goto out;
1045
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001046 /* Find the first old lock with the same owner as the new lock */
1047 list_for_each_entry(fl, &ctx->flc_posix, fl_list) {
1048 if (posix_same_owner(request, fl))
1049 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Jeff Layton1cb36012013-06-21 08:58:12 -04001052 /* Process locks with this owner. */
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001053 list_for_each_entry_safe_from(fl, tmp, &ctx->flc_posix, fl_list) {
1054 if (!posix_same_owner(request, fl))
1055 break;
1056
1057 /* Detect adjacent or overlapping regions (if same lock type) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (request->fl_type == fl->fl_type) {
Olaf Kirch449231d2005-08-25 16:25:35 -07001059 /* In all comparisons of start vs end, use
1060 * "start - 1" rather than "end + 1". If end
1061 * is OFFSET_MAX, end + 1 will become negative.
1062 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (fl->fl_end < request->fl_start - 1)
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001064 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 /* If the next lock in the list has entirely bigger
1066 * addresses than the new one, insert the lock here.
1067 */
Olaf Kirch449231d2005-08-25 16:25:35 -07001068 if (fl->fl_start - 1 > request->fl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 break;
1070
1071 /* If we come here, the new and old lock are of the
1072 * same type and adjacent or overlapping. Make one
1073 * lock yielding from the lower start address of both
1074 * locks to the higher end address.
1075 */
1076 if (fl->fl_start > request->fl_start)
1077 fl->fl_start = request->fl_start;
1078 else
1079 request->fl_start = fl->fl_start;
1080 if (fl->fl_end < request->fl_end)
1081 fl->fl_end = request->fl_end;
1082 else
1083 request->fl_end = fl->fl_end;
1084 if (added) {
Jeff Laytone084c1b2015-02-16 14:32:03 -05001085 locks_delete_lock_ctx(fl, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 continue;
1087 }
1088 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -04001089 added = true;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001090 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 /* Processing for different lock types is a bit
1092 * more complex.
1093 */
1094 if (fl->fl_end < request->fl_start)
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001095 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (fl->fl_start > request->fl_end)
1097 break;
1098 if (request->fl_type == F_UNLCK)
Jeff Laytonb9746ef2013-06-21 08:58:13 -04001099 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (fl->fl_start < request->fl_start)
1101 left = fl;
1102 /* If the next lock in the list has a higher end
1103 * address than the new one, insert the new one here.
1104 */
1105 if (fl->fl_end > request->fl_end) {
1106 right = fl;
1107 break;
1108 }
1109 if (fl->fl_start >= request->fl_start) {
1110 /* The new lock completely replaces an old
1111 * one (This may happen several times).
1112 */
1113 if (added) {
Jeff Laytone084c1b2015-02-16 14:32:03 -05001114 locks_delete_lock_ctx(fl, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 continue;
1116 }
Jeff Laytonb84d49f2014-08-12 08:03:49 -04001117 /*
1118 * Replace the old lock with new_fl, and
1119 * remove the old one. It's safe to do the
1120 * insert here since we know that we won't be
1121 * using new_fl later, and that the lock is
1122 * just replacing an existing lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 */
Jeff Laytonb84d49f2014-08-12 08:03:49 -04001124 error = -ENOLCK;
1125 if (!new_fl)
1126 goto out;
1127 locks_copy_lock(new_fl, request);
1128 request = new_fl;
1129 new_fl = NULL;
Jeff Laytone084c1b2015-02-16 14:32:03 -05001130 locks_insert_lock_ctx(request, &fl->fl_list);
1131 locks_delete_lock_ctx(fl, &dispose);
Jeff Laytonb9746ef2013-06-21 08:58:13 -04001132 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001137 /*
Jeff Layton1cb36012013-06-21 08:58:12 -04001138 * The above code only modifies existing locks in case of merging or
1139 * replacing. If new lock(s) need to be inserted all modifications are
1140 * done below this, so it's safe yet to bail out.
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001141 */
1142 error = -ENOLCK; /* "no luck" */
1143 if (right && left == right && !new_fl2)
1144 goto out;
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 error = 0;
1147 if (!added) {
Trond Myklebustf475ae92006-06-29 16:38:32 -04001148 if (request->fl_type == F_UNLCK) {
1149 if (request->fl_flags & FL_EXISTS)
1150 error = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -04001152 }
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001153
1154 if (!new_fl) {
1155 error = -ENOLCK;
1156 goto out;
1157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 locks_copy_lock(new_fl, request);
Jeff Laytone084c1b2015-02-16 14:32:03 -05001159 locks_insert_lock_ctx(new_fl, &fl->fl_list);
Jeff Layton2e2f756f2015-02-17 17:08:23 -05001160 fl = new_fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 new_fl = NULL;
1162 }
1163 if (right) {
1164 if (left == right) {
1165 /* The new lock breaks the old one in two pieces,
1166 * so we have to use the second new lock.
1167 */
1168 left = new_fl2;
1169 new_fl2 = NULL;
1170 locks_copy_lock(left, right);
Jeff Laytone084c1b2015-02-16 14:32:03 -05001171 locks_insert_lock_ctx(left, &fl->fl_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173 right->fl_start = request->fl_end + 1;
1174 locks_wake_up_blocks(right);
1175 }
1176 if (left) {
1177 left->fl_end = request->fl_start - 1;
1178 locks_wake_up_blocks(left);
1179 }
1180 out:
Jeff Layton6109c852015-01-16 15:05:57 -05001181 spin_unlock(&ctx->flc_lock);
Peter Zijlstra87709e22016-05-30 16:48:35 +02001182 percpu_up_read_preempt_enable(&file_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /*
1184 * Free any unused locks.
1185 */
1186 if (new_fl)
1187 locks_free_lock(new_fl);
1188 if (new_fl2)
1189 locks_free_lock(new_fl2);
Jeff Laytoned9814d2014-08-11 14:20:31 -04001190 locks_dispose_list(&dispose);
Jeff Layton18909102016-01-06 21:26:10 -05001191 trace_posix_lock_inode(inode, request, error);
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return error;
1194}
1195
1196/**
1197 * posix_lock_file - Apply a POSIX-style lock to a file
1198 * @filp: The file to apply the lock to
1199 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001200 * @conflock: Place to return a copy of the conflicting lock, if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 *
1202 * Add a POSIX style lock to a file.
1203 * We merge adjacent & overlapping locks whenever possible.
1204 * POSIX locks are sorted by owner task, then by starting address
Trond Myklebustf475ae92006-06-29 16:38:32 -04001205 *
1206 * Note that if called with an FL_EXISTS argument, the caller may determine
1207 * whether or not a lock was successfully freed by testing the return
1208 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
Marc Eshel150b3932007-01-18 16:15:35 -05001210int posix_lock_file(struct file *filp, struct file_lock *fl,
Andy Adamson5842add2006-03-26 01:37:26 -08001211 struct file_lock *conflock)
1212{
Miklos Szeredic568d682016-09-16 12:44:20 +02001213 return posix_lock_inode(locks_inode(filp), fl, conflock);
Andy Adamson5842add2006-03-26 01:37:26 -08001214}
Marc Eshel150b3932007-01-18 16:15:35 -05001215EXPORT_SYMBOL(posix_lock_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217/**
Jeff Layton29d01b22015-07-11 06:43:02 -04001218 * posix_lock_inode_wait - Apply a POSIX-style lock to a file
1219 * @inode: inode of file to which lock request should be applied
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 * @fl: The lock to be applied
1221 *
Benjamin Coddington616fb382015-10-22 13:38:15 -04001222 * Apply a POSIX style lock request to an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
Benjamin Coddington616fb382015-10-22 13:38:15 -04001224static int posix_lock_inode_wait(struct inode *inode, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 int error;
1227 might_sleep ();
1228 for (;;) {
Jeff Laytonb4d629a2016-01-07 18:27:42 -05001229 error = posix_lock_inode(inode, fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001230 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 break;
1232 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1233 if (!error)
1234 continue;
1235
1236 locks_delete_block(fl);
1237 break;
1238 }
1239 return error;
1240}
Jeff Layton29d01b22015-07-11 06:43:02 -04001241
Jeff Layton9e8925b2015-11-16 09:49:34 -05001242#ifdef CONFIG_MANDATORY_FILE_LOCKING
Jeff Layton29d01b22015-07-11 06:43:02 -04001243/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 * locks_mandatory_locked - Check for an active lock
Jeff Laytond7a06982014-03-10 09:54:15 -04001245 * @file: the file to check
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 *
1247 * Searches the inode's list of locks to find any POSIX locks which conflict.
1248 * This function is called from locks_verify_locked() only.
1249 */
Jeff Laytond7a06982014-03-10 09:54:15 -04001250int locks_mandatory_locked(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001252 int ret;
Miklos Szeredic568d682016-09-16 12:44:20 +02001253 struct inode *inode = locks_inode(file);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001254 struct file_lock_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct file_lock *fl;
1256
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001257 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001258 if (!ctx || list_empty_careful(&ctx->flc_posix))
1259 return 0;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /*
1262 * Search the lock list for this inode for any POSIX locks.
1263 */
Jeff Layton6109c852015-01-16 15:05:57 -05001264 spin_lock(&ctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001265 ret = 0;
1266 list_for_each_entry(fl, &ctx->flc_posix, fl_list) {
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02001267 if (fl->fl_owner != current->files &&
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001268 fl->fl_owner != file) {
1269 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 break;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Jeff Layton6109c852015-01-16 15:05:57 -05001273 spin_unlock(&ctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05001274 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
1277/**
1278 * locks_mandatory_area - Check for a conflicting lock
Christoph Hellwigacc15572015-12-03 12:59:49 +01001279 * @inode: the file to check
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 * @filp: how the file was opened (if it was)
Christoph Hellwigacc15572015-12-03 12:59:49 +01001281 * @start: first byte in the file to check
1282 * @end: lastbyte in the file to check
1283 * @type: %F_WRLCK for a write lock, else %F_RDLCK
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 *
1285 * Searches the inode's list of locks to find any POSIX locks which conflict.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 */
Christoph Hellwigacc15572015-12-03 12:59:49 +01001287int locks_mandatory_area(struct inode *inode, struct file *filp, loff_t start,
1288 loff_t end, unsigned char type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 struct file_lock fl;
1291 int error;
Jeff Layton29723ad2014-03-10 09:54:19 -04001292 bool sleep = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 locks_init_lock(&fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 fl.fl_pid = current->tgid;
1296 fl.fl_file = filp;
1297 fl.fl_flags = FL_POSIX | FL_ACCESS;
1298 if (filp && !(filp->f_flags & O_NONBLOCK))
Jeff Layton29723ad2014-03-10 09:54:19 -04001299 sleep = true;
Christoph Hellwigacc15572015-12-03 12:59:49 +01001300 fl.fl_type = type;
1301 fl.fl_start = start;
1302 fl.fl_end = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 for (;;) {
Jeff Layton29723ad2014-03-10 09:54:19 -04001305 if (filp) {
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02001306 fl.fl_owner = filp;
Jeff Layton29723ad2014-03-10 09:54:19 -04001307 fl.fl_flags &= ~FL_SLEEP;
Jeff Laytonb4d629a2016-01-07 18:27:42 -05001308 error = posix_lock_inode(inode, &fl, NULL);
Jeff Layton29723ad2014-03-10 09:54:19 -04001309 if (!error)
1310 break;
1311 }
1312
1313 if (sleep)
1314 fl.fl_flags |= FL_SLEEP;
1315 fl.fl_owner = current->files;
Jeff Laytonb4d629a2016-01-07 18:27:42 -05001316 error = posix_lock_inode(inode, &fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001317 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 break;
1319 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1320 if (!error) {
1321 /*
1322 * If we've been sleeping someone might have
1323 * changed the permissions behind our back.
1324 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07001325 if (__mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 continue;
1327 }
1328
1329 locks_delete_block(&fl);
1330 break;
1331 }
1332
1333 return error;
1334}
1335
1336EXPORT_SYMBOL(locks_mandatory_area);
Jeff Layton9e8925b2015-11-16 09:49:34 -05001337#endif /* CONFIG_MANDATORY_FILE_LOCKING */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
J. Bruce Fields778fc542011-07-26 18:25:49 -04001339static void lease_clear_pending(struct file_lock *fl, int arg)
1340{
1341 switch (arg) {
1342 case F_UNLCK:
1343 fl->fl_flags &= ~FL_UNLOCK_PENDING;
1344 /* fall through: */
1345 case F_RDLCK:
1346 fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1347 }
1348}
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350/* We already had a lease on this file; just change its type */
Jeff Layton7448cc32015-01-16 15:05:57 -05001351int lease_modify(struct file_lock *fl, int arg, struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 int error = assign_type(fl, arg);
1354
1355 if (error)
1356 return error;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001357 lease_clear_pending(fl, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 locks_wake_up_blocks(fl);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001359 if (arg == F_UNLCK) {
1360 struct file *filp = fl->fl_file;
1361
1362 f_delown(filp);
1363 filp->f_owner.signum = 0;
J. Bruce Fields96d6d592012-07-27 16:18:00 -04001364 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
1365 if (fl->fl_fasync != NULL) {
1366 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
1367 fl->fl_fasync = NULL;
1368 }
Jeff Laytone084c1b2015-02-16 14:32:03 -05001369 locks_delete_lock_ctx(fl, dispose);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return 0;
1372}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373EXPORT_SYMBOL(lease_modify);
1374
J. Bruce Fields778fc542011-07-26 18:25:49 -04001375static bool past_time(unsigned long then)
1376{
1377 if (!then)
1378 /* 0 is a special value meaning "this never expires": */
1379 return false;
1380 return time_after(jiffies, then);
1381}
1382
Jeff Laytonc45198e2014-09-01 07:12:07 -04001383static void time_out_leases(struct inode *inode, struct list_head *dispose)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Jeff Layton8634b512015-01-16 15:05:55 -05001385 struct file_lock_context *ctx = inode->i_flctx;
1386 struct file_lock *fl, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Jeff Layton6109c852015-01-16 15:05:57 -05001388 lockdep_assert_held(&ctx->flc_lock);
Jeff Laytonf82b4b62014-08-22 18:50:48 -04001389
Jeff Layton8634b512015-01-16 15:05:55 -05001390 list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list) {
Jeff Layton62af4f12014-05-09 14:13:05 -04001391 trace_time_out_leases(inode, fl);
J. Bruce Fields778fc542011-07-26 18:25:49 -04001392 if (past_time(fl->fl_downgrade_time))
Jeff Layton7448cc32015-01-16 15:05:57 -05001393 lease_modify(fl, F_RDLCK, dispose);
J. Bruce Fields778fc542011-07-26 18:25:49 -04001394 if (past_time(fl->fl_break_time))
Jeff Layton7448cc32015-01-16 15:05:57 -05001395 lease_modify(fl, F_UNLCK, dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397}
1398
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001399static bool leases_conflict(struct file_lock *lease, struct file_lock *breaker)
1400{
Christoph Hellwig11afe9f2015-01-21 19:17:03 +01001401 if ((breaker->fl_flags & FL_LAYOUT) != (lease->fl_flags & FL_LAYOUT))
1402 return false;
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001403 if ((breaker->fl_flags & FL_DELEG) && (lease->fl_flags & FL_LEASE))
1404 return false;
1405 return locks_conflict(breaker, lease);
1406}
1407
Jeff Layton03d12dd2014-09-01 14:53:41 -04001408static bool
1409any_leases_conflict(struct inode *inode, struct file_lock *breaker)
1410{
Jeff Layton8634b512015-01-16 15:05:55 -05001411 struct file_lock_context *ctx = inode->i_flctx;
Jeff Layton03d12dd2014-09-01 14:53:41 -04001412 struct file_lock *fl;
1413
Jeff Layton6109c852015-01-16 15:05:57 -05001414 lockdep_assert_held(&ctx->flc_lock);
Jeff Layton03d12dd2014-09-01 14:53:41 -04001415
Jeff Layton8634b512015-01-16 15:05:55 -05001416 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
Jeff Layton03d12dd2014-09-01 14:53:41 -04001417 if (leases_conflict(fl, breaker))
1418 return true;
1419 }
1420 return false;
1421}
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423/**
1424 * __break_lease - revoke all outstanding leases on file
1425 * @inode: the inode of the file to return
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001426 * @mode: O_RDONLY: break only write leases; O_WRONLY or O_RDWR:
1427 * break all leases
1428 * @type: FL_LEASE: break leases and delegations; FL_DELEG: break
1429 * only delegations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 *
david m. richter87250dd2007-05-09 16:10:27 -04001431 * break_lease (inlined for speed) has checked there already is at least
1432 * some kind of lock (maybe a lease) on this file. Leases are broken on
1433 * a call to open() or truncate(). This function can sleep unless you
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 * specified %O_NONBLOCK to your open().
1435 */
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001436int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
J. Bruce Fields778fc542011-07-26 18:25:49 -04001438 int error = 0;
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001439 struct file_lock_context *ctx;
Yan, Zhenga9011252015-03-27 10:34:20 +08001440 struct file_lock *new_fl, *fl, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 unsigned long break_time;
Al Viro8737c932009-12-24 06:47:55 -05001442 int want_write = (mode & O_ACCMODE) != O_RDONLY;
Jeff Laytonc45198e2014-09-01 07:12:07 -04001443 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Al Viro8737c932009-12-24 06:47:55 -05001445 new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001446 if (IS_ERR(new_fl))
1447 return PTR_ERR(new_fl);
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001448 new_fl->fl_flags = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Jeff Layton8634b512015-01-16 15:05:55 -05001450 /* typically we will check that ctx is non-NULL before calling */
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001451 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Layton8634b512015-01-16 15:05:55 -05001452 if (!ctx) {
1453 WARN_ON_ONCE(1);
1454 return error;
1455 }
1456
Peter Zijlstra87709e22016-05-30 16:48:35 +02001457 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05001458 spin_lock(&ctx->flc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Jeff Laytonc45198e2014-09-01 07:12:07 -04001460 time_out_leases(inode, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Jeff Layton03d12dd2014-09-01 14:53:41 -04001462 if (!any_leases_conflict(inode, new_fl))
J. Bruce Fields778fc542011-07-26 18:25:49 -04001463 goto out;
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 break_time = 0;
1466 if (lease_break_time > 0) {
1467 break_time = jiffies + lease_break_time * HZ;
1468 if (break_time == 0)
1469 break_time++; /* so that 0 means no break time */
1470 }
1471
Yan, Zhenga9011252015-03-27 10:34:20 +08001472 list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list) {
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001473 if (!leases_conflict(fl, new_fl))
1474 continue;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001475 if (want_write) {
1476 if (fl->fl_flags & FL_UNLOCK_PENDING)
1477 continue;
1478 fl->fl_flags |= FL_UNLOCK_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 fl->fl_break_time = break_time;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001480 } else {
Jeff Layton8634b512015-01-16 15:05:55 -05001481 if (lease_breaking(fl))
J. Bruce Fields778fc542011-07-26 18:25:49 -04001482 continue;
1483 fl->fl_flags |= FL_DOWNGRADE_PENDING;
1484 fl->fl_downgrade_time = break_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
Jeff Layton4d01b7f2014-09-01 15:06:54 -04001486 if (fl->fl_lmops->lm_break(fl))
Jeff Laytone084c1b2015-02-16 14:32:03 -05001487 locks_delete_lock_ctx(fl, &dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489
Jeff Layton8634b512015-01-16 15:05:55 -05001490 if (list_empty(&ctx->flc_lease))
Jeff Layton4d01b7f2014-09-01 15:06:54 -04001491 goto out;
1492
Jeff Layton843c6b22014-09-01 14:27:43 -04001493 if (mode & O_NONBLOCK) {
Jeff Layton62af4f12014-05-09 14:13:05 -04001494 trace_break_lease_noblock(inode, new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 error = -EWOULDBLOCK;
1496 goto out;
1497 }
1498
1499restart:
Jeff Layton8634b512015-01-16 15:05:55 -05001500 fl = list_first_entry(&ctx->flc_lease, struct file_lock, fl_list);
1501 break_time = fl->fl_break_time;
Jeff Laytonf1c6bb22014-04-15 06:17:49 -04001502 if (break_time != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 break_time -= jiffies;
Jeff Laytonf1c6bb22014-04-15 06:17:49 -04001504 if (break_time == 0)
1505 break_time++;
Jeff Layton8634b512015-01-16 15:05:55 -05001506 locks_insert_block(fl, new_fl);
Jeff Layton62af4f12014-05-09 14:13:05 -04001507 trace_break_lease_block(inode, new_fl);
Jeff Layton6109c852015-01-16 15:05:57 -05001508 spin_unlock(&ctx->flc_lock);
Peter Zijlstra87709e22016-05-30 16:48:35 +02001509 percpu_up_read_preempt_enable(&file_rwsem);
Peter Zijlstraaba37662015-06-22 14:16:33 +02001510
Jeff Laytonc45198e2014-09-01 07:12:07 -04001511 locks_dispose_list(&dispose);
Matthew Wilcox4321e012008-01-14 21:28:30 -07001512 error = wait_event_interruptible_timeout(new_fl->fl_wait,
1513 !new_fl->fl_next, break_time);
Peter Zijlstraaba37662015-06-22 14:16:33 +02001514
Peter Zijlstra87709e22016-05-30 16:48:35 +02001515 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05001516 spin_lock(&ctx->flc_lock);
Jeff Layton62af4f12014-05-09 14:13:05 -04001517 trace_break_lease_unblock(inode, new_fl);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001518 locks_delete_block(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (error >= 0) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001520 /*
1521 * Wait for the next conflicting lease that has not been
1522 * broken yet
1523 */
Jeff Layton03d12dd2014-09-01 14:53:41 -04001524 if (error == 0)
1525 time_out_leases(inode, &dispose);
1526 if (any_leases_conflict(inode, new_fl))
1527 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 error = 0;
1529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530out:
Jeff Layton6109c852015-01-16 15:05:57 -05001531 spin_unlock(&ctx->flc_lock);
Peter Zijlstra87709e22016-05-30 16:48:35 +02001532 percpu_up_read_preempt_enable(&file_rwsem);
Jeff Laytonc45198e2014-09-01 07:12:07 -04001533 locks_dispose_list(&dispose);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001534 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return error;
1536}
1537
1538EXPORT_SYMBOL(__break_lease);
1539
1540/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001541 * lease_get_mtime - get the last modified time of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 * @inode: the inode
1543 * @time: pointer to a timespec which will contain the last modified time
1544 *
1545 * This is to force NFS clients to flush their caches for files with
1546 * exclusive leases. The justification is that if someone has an
Randy Dunlapa6b91912008-03-19 17:01:00 -07001547 * exclusive lease, then they could be modifying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
1549void lease_get_mtime(struct inode *inode, struct timespec *time)
1550{
Jeff Laytonbfe86022014-08-22 10:18:44 -04001551 bool has_lease = false;
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001552 struct file_lock_context *ctx;
Jeff Layton8634b512015-01-16 15:05:55 -05001553 struct file_lock *fl;
Jeff Laytonbfe86022014-08-22 10:18:44 -04001554
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001555 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Layton8634b512015-01-16 15:05:55 -05001556 if (ctx && !list_empty_careful(&ctx->flc_lease)) {
Jeff Layton6109c852015-01-16 15:05:57 -05001557 spin_lock(&ctx->flc_lock);
Geliang Tang8ace5df2015-11-18 21:40:33 +08001558 fl = list_first_entry_or_null(&ctx->flc_lease,
1559 struct file_lock, fl_list);
1560 if (fl && (fl->fl_type == F_WRLCK))
1561 has_lease = true;
Jeff Layton6109c852015-01-16 15:05:57 -05001562 spin_unlock(&ctx->flc_lock);
Jeff Laytonbfe86022014-08-22 10:18:44 -04001563 }
1564
1565 if (has_lease)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001566 *time = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 else
1568 *time = inode->i_mtime;
1569}
1570
1571EXPORT_SYMBOL(lease_get_mtime);
1572
1573/**
1574 * fcntl_getlease - Enquire what lease is currently active
1575 * @filp: the file
1576 *
1577 * The value returned by this function will be one of
1578 * (if no lease break is pending):
1579 *
1580 * %F_RDLCK to indicate a shared lease is held.
1581 *
1582 * %F_WRLCK to indicate an exclusive lease is held.
1583 *
1584 * %F_UNLCK to indicate no lease is held.
1585 *
1586 * (if a lease break is pending):
1587 *
1588 * %F_RDLCK to indicate an exclusive lease needs to be
1589 * changed to a shared lease (or removed).
1590 *
1591 * %F_UNLCK to indicate the lease needs to be removed.
1592 *
1593 * XXX: sfr & willy disagree over whether F_INPROGRESS
1594 * should be returned to userspace.
1595 */
1596int fcntl_getlease(struct file *filp)
1597{
1598 struct file_lock *fl;
Miklos Szeredic568d682016-09-16 12:44:20 +02001599 struct inode *inode = locks_inode(filp);
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001600 struct file_lock_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 int type = F_UNLCK;
Jeff Laytonc45198e2014-09-01 07:12:07 -04001602 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001604 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Layton8634b512015-01-16 15:05:55 -05001605 if (ctx && !list_empty_careful(&ctx->flc_lease)) {
Peter Zijlstra5f430862016-10-08 10:12:28 +02001606 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05001607 spin_lock(&ctx->flc_lock);
Miklos Szeredic568d682016-09-16 12:44:20 +02001608 time_out_leases(inode, &dispose);
Jeff Layton8634b512015-01-16 15:05:55 -05001609 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
1610 if (fl->fl_file != filp)
1611 continue;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001612 type = target_leasetype(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 break;
1614 }
Jeff Layton6109c852015-01-16 15:05:57 -05001615 spin_unlock(&ctx->flc_lock);
Peter Zijlstra5f430862016-10-08 10:12:28 +02001616 percpu_up_read_preempt_enable(&file_rwsem);
1617
Jeff Layton8634b512015-01-16 15:05:55 -05001618 locks_dispose_list(&dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return type;
1621}
1622
Jeff Layton24cbe782014-02-03 12:13:06 -05001623/**
1624 * check_conflicting_open - see if the given dentry points to a file that has
1625 * an existing open that would conflict with the
1626 * desired lease.
1627 * @dentry: dentry to check
1628 * @arg: type of lease that we're trying to acquire
Randy Dunlap7fadc592015-08-09 18:43:17 -07001629 * @flags: current lock flags
Jeff Layton24cbe782014-02-03 12:13:06 -05001630 *
1631 * Check to see if there's an existing open fd on this file that would
1632 * conflict with the lease we're trying to set.
1633 */
1634static int
Christoph Hellwig11afe9f2015-01-21 19:17:03 +01001635check_conflicting_open(const struct dentry *dentry, const long arg, int flags)
Jeff Layton24cbe782014-02-03 12:13:06 -05001636{
1637 int ret = 0;
1638 struct inode *inode = dentry->d_inode;
1639
Christoph Hellwig11afe9f2015-01-21 19:17:03 +01001640 if (flags & FL_LAYOUT)
1641 return 0;
1642
Miklos Szeredi4d0c5ba2016-09-16 12:44:21 +02001643 if ((arg == F_RDLCK) &&
1644 (atomic_read(&d_real_inode(dentry)->i_writecount) > 0))
Jeff Layton24cbe782014-02-03 12:13:06 -05001645 return -EAGAIN;
1646
1647 if ((arg == F_WRLCK) && ((d_count(dentry) > 1) ||
1648 (atomic_read(&inode->i_count) > 1)))
1649 ret = -EAGAIN;
1650
1651 return ret;
1652}
1653
Jeff Laytone6f5c782014-08-22 10:40:25 -04001654static int
1655generic_add_lease(struct file *filp, long arg, struct file_lock **flp, void **priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
Jeff Layton8634b512015-01-16 15:05:55 -05001657 struct file_lock *fl, *my_fl = NULL, *lease;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001658 struct dentry *dentry = filp->f_path.dentry;
Miklos Szeredic568d682016-09-16 12:44:20 +02001659 struct inode *inode = dentry->d_inode;
Jeff Layton8634b512015-01-16 15:05:55 -05001660 struct file_lock_context *ctx;
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001661 bool is_deleg = (*flp)->fl_flags & FL_DELEG;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001662 int error;
Jeff Laytonc45198e2014-09-01 07:12:07 -04001663 LIST_HEAD(dispose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
J. Bruce Fields096657b2010-10-30 17:31:14 -04001665 lease = *flp;
Jeff Layton62af4f12014-05-09 14:13:05 -04001666 trace_generic_add_lease(inode, lease);
1667
Jeff Layton5c1c6692015-04-03 09:04:03 -04001668 /* Note that arg is never F_UNLCK here */
1669 ctx = locks_get_lock_context(inode, arg);
Jeff Layton8634b512015-01-16 15:05:55 -05001670 if (!ctx)
1671 return -ENOMEM;
1672
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001673 /*
1674 * In the delegation case we need mutual exclusion with
1675 * a number of operations that take the i_mutex. We trylock
1676 * because delegations are an optional optimization, and if
1677 * there's some chance of a conflict--we'd rather not
1678 * bother, maybe that's a sign this just isn't a good file to
1679 * hand out a delegation on.
1680 */
Al Viro59551022016-01-22 15:40:57 -05001681 if (is_deleg && !inode_trylock(inode))
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001682 return -EAGAIN;
1683
1684 if (is_deleg && arg == F_WRLCK) {
1685 /* Write delegations are not currently supported: */
Al Viro59551022016-01-22 15:40:57 -05001686 inode_unlock(inode);
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001687 WARN_ON_ONCE(1);
1688 return -EINVAL;
1689 }
J. Bruce Fields096657b2010-10-30 17:31:14 -04001690
Peter Zijlstra87709e22016-05-30 16:48:35 +02001691 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05001692 spin_lock(&ctx->flc_lock);
Jeff Laytonc45198e2014-09-01 07:12:07 -04001693 time_out_leases(inode, &dispose);
Christoph Hellwig11afe9f2015-01-21 19:17:03 +01001694 error = check_conflicting_open(dentry, arg, lease->fl_flags);
Jeff Layton24cbe782014-02-03 12:13:06 -05001695 if (error)
J. Bruce Fields096657b2010-10-30 17:31:14 -04001696 goto out;
Pavel Emelyanov85c59582007-09-20 12:45:02 +04001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /*
1699 * At this point, we know that if there is an exclusive
1700 * lease on this file, then we hold it on this filp
1701 * (otherwise our open of this file would have blocked).
1702 * And if we are trying to acquire an exclusive lease,
1703 * then the file is not open by anyone (including us)
1704 * except for this filp.
1705 */
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001706 error = -EAGAIN;
Jeff Layton8634b512015-01-16 15:05:55 -05001707 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +01001708 if (fl->fl_file == filp &&
1709 fl->fl_owner == lease->fl_owner) {
Jeff Layton8634b512015-01-16 15:05:55 -05001710 my_fl = fl;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001711 continue;
1712 }
Jeff Layton8634b512015-01-16 15:05:55 -05001713
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001714 /*
1715 * No exclusive leases if someone else has a lease on
1716 * this file:
1717 */
1718 if (arg == F_WRLCK)
1719 goto out;
1720 /*
1721 * Modifying our existing lease is OK, but no getting a
1722 * new lease if someone else is opening for write:
1723 */
1724 if (fl->fl_flags & FL_UNLOCK_PENDING)
1725 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727
Jeff Layton8634b512015-01-16 15:05:55 -05001728 if (my_fl != NULL) {
Jeff Layton0164bf02015-03-04 17:34:32 -05001729 lease = my_fl;
1730 error = lease->fl_lmops->lm_change(lease, arg, &dispose);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001731 if (error)
1732 goto out;
1733 goto out_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 error = -EINVAL;
1737 if (!leases_enable)
1738 goto out;
1739
Jeff Laytone084c1b2015-02-16 14:32:03 -05001740 locks_insert_lock_ctx(lease, &ctx->flc_lease);
Jeff Layton24cbe782014-02-03 12:13:06 -05001741 /*
1742 * The check in break_lease() is lockless. It's possible for another
1743 * open to race in after we did the earlier check for a conflicting
1744 * open but before the lease was inserted. Check again for a
1745 * conflicting open and cancel the lease if there is one.
1746 *
1747 * We also add a barrier here to ensure that the insertion of the lock
1748 * precedes these checks.
1749 */
1750 smp_mb();
Christoph Hellwig11afe9f2015-01-21 19:17:03 +01001751 error = check_conflicting_open(dentry, arg, lease->fl_flags);
Jeff Layton8634b512015-01-16 15:05:55 -05001752 if (error) {
Jeff Laytone084c1b2015-02-16 14:32:03 -05001753 locks_unlink_lock_ctx(lease);
Jeff Layton8634b512015-01-16 15:05:55 -05001754 goto out;
1755 }
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001756
1757out_setup:
1758 if (lease->fl_lmops->lm_setup)
1759 lease->fl_lmops->lm_setup(lease, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760out:
Jeff Layton6109c852015-01-16 15:05:57 -05001761 spin_unlock(&ctx->flc_lock);
Peter Zijlstra87709e22016-05-30 16:48:35 +02001762 percpu_up_read_preempt_enable(&file_rwsem);
Jeff Laytonc45198e2014-09-01 07:12:07 -04001763 locks_dispose_list(&dispose);
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001764 if (is_deleg)
Al Viro59551022016-01-22 15:40:57 -05001765 inode_unlock(inode);
Jeff Layton8634b512015-01-16 15:05:55 -05001766 if (!error && !my_fl)
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001767 *flp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 return error;
1769}
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001770
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +01001771static int generic_delete_lease(struct file *filp, void *owner)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001772{
Jeff Layton0efaa7e2014-08-22 10:18:45 -04001773 int error = -EAGAIN;
Jeff Layton8634b512015-01-16 15:05:55 -05001774 struct file_lock *fl, *victim = NULL;
Miklos Szeredic568d682016-09-16 12:44:20 +02001775 struct inode *inode = locks_inode(filp);
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001776 struct file_lock_context *ctx;
Jeff Laytonc45198e2014-09-01 07:12:07 -04001777 LIST_HEAD(dispose);
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001778
Dmitry Vyukov128a3782015-09-21 09:43:06 +02001779 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Layton8634b512015-01-16 15:05:55 -05001780 if (!ctx) {
1781 trace_generic_delete_lease(inode, NULL);
1782 return error;
1783 }
1784
Peter Zijlstra87709e22016-05-30 16:48:35 +02001785 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05001786 spin_lock(&ctx->flc_lock);
Jeff Layton8634b512015-01-16 15:05:55 -05001787 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +01001788 if (fl->fl_file == filp &&
1789 fl->fl_owner == owner) {
Jeff Layton8634b512015-01-16 15:05:55 -05001790 victim = fl;
Jeff Layton0efaa7e2014-08-22 10:18:45 -04001791 break;
Jeff Layton8634b512015-01-16 15:05:55 -05001792 }
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001793 }
Jeff Laytona9b1b452015-03-14 09:45:35 -04001794 trace_generic_delete_lease(inode, victim);
Jeff Layton8634b512015-01-16 15:05:55 -05001795 if (victim)
Jeff Layton7448cc32015-01-16 15:05:57 -05001796 error = fl->fl_lmops->lm_change(victim, F_UNLCK, &dispose);
Jeff Layton6109c852015-01-16 15:05:57 -05001797 spin_unlock(&ctx->flc_lock);
Peter Zijlstra87709e22016-05-30 16:48:35 +02001798 percpu_up_read_preempt_enable(&file_rwsem);
Jeff Laytonc45198e2014-09-01 07:12:07 -04001799 locks_dispose_list(&dispose);
Jeff Layton0efaa7e2014-08-22 10:18:45 -04001800 return error;
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001801}
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803/**
1804 * generic_setlease - sets a lease on an open file
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001805 * @filp: file pointer
1806 * @arg: type of lease to obtain
1807 * @flp: input - file_lock to use, output - file_lock inserted
1808 * @priv: private data for lm_setup (may be NULL if lm_setup
1809 * doesn't require it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 *
1811 * The (input) flp->fl_lmops->lm_break function is required
1812 * by break_lease().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 */
Jeff Laytone6f5c782014-08-22 10:40:25 -04001814int generic_setlease(struct file *filp, long arg, struct file_lock **flp,
1815 void **priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
Miklos Szeredic568d682016-09-16 12:44:20 +02001817 struct inode *inode = locks_inode(filp);
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001818 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08001820 if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001821 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (!S_ISREG(inode->i_mode))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001823 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 error = security_file_lock(filp, arg);
1825 if (error)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001826 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001828 switch (arg) {
1829 case F_UNLCK:
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +01001830 return generic_delete_lease(filp, *priv);
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001831 case F_RDLCK:
1832 case F_WRLCK:
Jeff Layton0efaa7e2014-08-22 10:18:45 -04001833 if (!(*flp)->fl_lmops->lm_break) {
1834 WARN_ON_ONCE(1);
1835 return -ENOLCK;
1836 }
Christoph Hellwig11afe9f2015-01-21 19:17:03 +01001837
Jeff Laytone6f5c782014-08-22 10:40:25 -04001838 return generic_add_lease(filp, arg, flp, priv);
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001839 default:
Dave Jones8d657eb2012-07-13 13:35:36 -04001840 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
Christoph Hellwig0af1a452007-07-31 00:39:22 -07001843EXPORT_SYMBOL(generic_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001845/**
Jeff Laytone51673a2014-08-22 18:13:28 -04001846 * vfs_setlease - sets a lease on an open file
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001847 * @filp: file pointer
1848 * @arg: type of lease to obtain
1849 * @lease: file_lock to use when adding a lease
1850 * @priv: private info for lm_setup when adding a lease (may be
1851 * NULL if lm_setup doesn't require it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 *
Jeff Laytone51673a2014-08-22 18:13:28 -04001853 * Call this to establish a lease on the file. The "lease" argument is not
1854 * used for F_UNLCK requests and may be NULL. For commands that set or alter
Mauro Carvalho Chehab80b79dd2017-05-27 06:07:18 -04001855 * an existing lease, the ``(*lease)->fl_lmops->lm_break`` operation must be
1856 * set; if not, this function will return -ENOLCK (and generate a scary-looking
Jeff Laytone51673a2014-08-22 18:13:28 -04001857 * stack trace).
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001858 *
1859 * The "priv" pointer is passed directly to the lm_setup function as-is. It
1860 * may be NULL if the lm_setup operation doesn't require it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 */
Jeff Laytone6f5c782014-08-22 10:40:25 -04001862int
1863vfs_setlease(struct file *filp, long arg, struct file_lock **lease, void **priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Miklos Szeredic568d682016-09-16 12:44:20 +02001865 if (filp->f_op->setlease && is_remote_lock(filp))
Jeff Laytonf82b4b62014-08-22 18:50:48 -04001866 return filp->f_op->setlease(filp, arg, lease, priv);
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001867 else
Jeff Laytonf82b4b62014-08-22 18:50:48 -04001868 return generic_setlease(filp, arg, lease, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001870EXPORT_SYMBOL_GPL(vfs_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001872static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001874 struct file_lock *fl;
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001875 struct fasync_struct *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 int error;
1877
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001878 fl = lease_alloc(filp, arg);
1879 if (IS_ERR(fl))
1880 return PTR_ERR(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001882 new = fasync_alloc();
1883 if (!new) {
1884 locks_free_lock(fl);
1885 return -ENOMEM;
1886 }
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001887 new->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Jeff Layton1c7dd2f2014-08-22 10:55:47 -04001889 error = vfs_setlease(filp, arg, &fl, (void **)&new);
Jeff Layton2dfb9282014-08-11 18:14:12 -04001890 if (fl)
1891 locks_free_lock(fl);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001892 if (new)
1893 fasync_free(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 return error;
1895}
1896
1897/**
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001898 * fcntl_setlease - sets a lease on an open file
1899 * @fd: open file descriptor
1900 * @filp: file pointer
1901 * @arg: type of lease to obtain
1902 *
1903 * Call this fcntl to establish a lease on the file.
1904 * Note that you also need to call %F_SETSIG to
1905 * receive a signal when the lease is broken.
1906 */
1907int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1908{
1909 if (arg == F_UNLCK)
Christoph Hellwig2ab99ee2015-01-21 19:14:02 +01001910 return vfs_setlease(filp, F_UNLCK, NULL, (void **)&filp);
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001911 return do_fcntl_add_lease(fd, filp, arg);
1912}
1913
1914/**
Jeff Layton29d01b22015-07-11 06:43:02 -04001915 * flock_lock_inode_wait - Apply a FLOCK-style lock to a file
1916 * @inode: inode of the file to apply to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 * @fl: The lock to be applied
1918 *
Jeff Layton29d01b22015-07-11 06:43:02 -04001919 * Apply a FLOCK style lock request to an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 */
Benjamin Coddington616fb382015-10-22 13:38:15 -04001921static int flock_lock_inode_wait(struct inode *inode, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 int error;
1924 might_sleep();
1925 for (;;) {
Jeff Layton29d01b22015-07-11 06:43:02 -04001926 error = flock_lock_inode(inode, fl);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001927 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 break;
1929 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1930 if (!error)
1931 continue;
1932
1933 locks_delete_block(fl);
1934 break;
1935 }
1936 return error;
1937}
1938
Jeff Layton29d01b22015-07-11 06:43:02 -04001939/**
Benjamin Coddingtone55c34a2015-10-22 13:38:13 -04001940 * locks_lock_inode_wait - Apply a lock to an inode
1941 * @inode: inode of the file to apply to
1942 * @fl: The lock to be applied
1943 *
1944 * Apply a POSIX or FLOCK style lock request to an inode.
1945 */
1946int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl)
1947{
1948 int res = 0;
1949 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
1950 case FL_POSIX:
1951 res = posix_lock_inode_wait(inode, fl);
1952 break;
1953 case FL_FLOCK:
1954 res = flock_lock_inode_wait(inode, fl);
1955 break;
1956 default:
1957 BUG();
1958 }
1959 return res;
1960}
1961EXPORT_SYMBOL(locks_lock_inode_wait);
1962
1963/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 * sys_flock: - flock() system call.
1965 * @fd: the file descriptor to lock.
1966 * @cmd: the type of lock to apply.
1967 *
1968 * Apply a %FL_FLOCK style lock to an open file descriptor.
Mauro Carvalho Chehab80b79dd2017-05-27 06:07:18 -04001969 * The @cmd can be one of:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 *
Mauro Carvalho Chehab80b79dd2017-05-27 06:07:18 -04001971 * - %LOCK_SH -- a shared lock.
1972 * - %LOCK_EX -- an exclusive lock.
1973 * - %LOCK_UN -- remove an existing lock.
1974 * - %LOCK_MAND -- a 'mandatory' flock.
1975 * This exists to emulate Windows Share Modes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 *
1977 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1978 * processes read and write access respectively.
1979 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001980SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
Al Viro2903ff02012-08-28 12:52:22 -04001982 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 struct file_lock *lock;
1984 int can_sleep, unlock;
1985 int error;
1986
1987 error = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001988 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 goto out;
1990
1991 can_sleep = !(cmd & LOCK_NB);
1992 cmd &= ~LOCK_NB;
1993 unlock = (cmd == LOCK_UN);
1994
Al Viroaeb5d722008-09-02 15:28:45 -04001995 if (!unlock && !(cmd & LOCK_MAND) &&
Al Viro2903ff02012-08-28 12:52:22 -04001996 !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 goto out_putf;
1998
Jeff Layton6e129d002014-09-04 10:25:06 -04001999 lock = flock_make_lock(f.file, cmd);
2000 if (IS_ERR(lock)) {
2001 error = PTR_ERR(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 goto out_putf;
Jeff Layton6e129d002014-09-04 10:25:06 -04002003 }
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (can_sleep)
2006 lock->fl_flags |= FL_SLEEP;
2007
Al Viro2903ff02012-08-28 12:52:22 -04002008 error = security_file_lock(f.file, lock->fl_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if (error)
2010 goto out_free;
2011
Miklos Szeredic568d682016-09-16 12:44:20 +02002012 if (f.file->f_op->flock && is_remote_lock(f.file))
Al Viro2903ff02012-08-28 12:52:22 -04002013 error = f.file->f_op->flock(f.file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 (can_sleep) ? F_SETLKW : F_SETLK,
2015 lock);
2016 else
Benjamin Coddington4f656362015-10-22 13:38:14 -04002017 error = locks_lock_file_wait(f.file, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 out_free:
Trond Myklebust993dfa82006-03-31 02:30:55 -08002020 locks_free_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 out_putf:
Al Viro2903ff02012-08-28 12:52:22 -04002023 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 out:
2025 return error;
2026}
2027
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002028/**
2029 * vfs_test_lock - test file byte range lock
2030 * @filp: The file to test lock for
J. Bruce Fields6924c552007-05-11 16:22:50 -04002031 * @fl: The lock to test; also used to hold result
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002032 *
2033 * Returns -ERRNO on failure. Indicates presence of conflicting lock by
2034 * setting conf->fl_type to something other than F_UNLCK.
2035 */
2036int vfs_test_lock(struct file *filp, struct file_lock *fl)
2037{
Miklos Szeredic568d682016-09-16 12:44:20 +02002038 if (filp->f_op->lock && is_remote_lock(filp))
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002039 return filp->f_op->lock(filp, F_GETLK, fl);
2040 posix_test_lock(filp, fl);
2041 return 0;
2042}
2043EXPORT_SYMBOL_GPL(vfs_test_lock);
2044
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002045/**
2046 * locks_translate_pid - translate a file_lock's fl_pid number into a namespace
2047 * @fl: The file_lock who's fl_pid should be translated
2048 * @ns: The namespace into which the pid should be translated
2049 *
2050 * Used to tranlate a fl_pid into a namespace virtual pid number
2051 */
2052static pid_t locks_translate_pid(struct file_lock *fl, struct pid_namespace *ns)
2053{
2054 pid_t vnr;
2055 struct pid *pid;
2056
2057 if (IS_OFDLCK(fl))
2058 return -1;
2059 if (IS_REMOTELCK(fl))
2060 return fl->fl_pid;
2061
2062 rcu_read_lock();
2063 pid = find_pid_ns(fl->fl_pid, &init_pid_ns);
2064 vnr = pid_nr_ns(pid, ns);
2065 rcu_read_unlock();
2066 return vnr;
2067}
2068
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05002069static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
2070{
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002071 flock->l_pid = locks_translate_pid(fl, task_active_pid_ns(current));
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05002072#if BITS_PER_LONG == 32
2073 /*
2074 * Make sure we can represent the posix lock via
2075 * legacy 32bit flock.
2076 */
2077 if (fl->fl_start > OFFT_OFFSET_MAX)
2078 return -EOVERFLOW;
2079 if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
2080 return -EOVERFLOW;
2081#endif
2082 flock->l_start = fl->fl_start;
2083 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
2084 fl->fl_end - fl->fl_start + 1;
2085 flock->l_whence = 0;
J. Bruce Fields129a84d2007-05-10 18:38:43 -04002086 flock->l_type = fl->fl_type;
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05002087 return 0;
2088}
2089
2090#if BITS_PER_LONG == 32
2091static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
2092{
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002093 flock->l_pid = locks_translate_pid(fl, task_active_pid_ns(current));
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05002094 flock->l_start = fl->fl_start;
2095 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
2096 fl->fl_end - fl->fl_start + 1;
2097 flock->l_whence = 0;
2098 flock->l_type = fl->fl_type;
2099}
2100#endif
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102/* Report the first existing lock that would conflict with l.
2103 * This implements the F_GETLK command of fcntl().
2104 */
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002105int fcntl_getlk(struct file *filp, unsigned int cmd, struct flock *flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
Benjamin Coddington52306e82017-07-16 10:28:21 -04002107 struct file_lock *fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 int error;
2109
Benjamin Coddington52306e82017-07-16 10:28:21 -04002110 fl = locks_alloc_lock();
2111 if (fl == NULL)
2112 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002114 if (flock->l_type != F_RDLCK && flock->l_type != F_WRLCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 goto out;
2116
Benjamin Coddington52306e82017-07-16 10:28:21 -04002117 error = flock_to_posix_lock(filp, fl, flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (error)
2119 goto out;
2120
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002121 if (cmd == F_OFD_GETLK) {
Jeff Layton90478932014-03-04 10:30:23 -05002122 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002123 if (flock->l_pid != 0)
Jeff Layton90478932014-03-04 10:30:23 -05002124 goto out;
2125
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002126 cmd = F_GETLK;
Benjamin Coddington52306e82017-07-16 10:28:21 -04002127 fl->fl_flags |= FL_OFDLCK;
2128 fl->fl_owner = filp;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002129 }
2130
Benjamin Coddington52306e82017-07-16 10:28:21 -04002131 error = vfs_test_lock(filp, fl);
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002132 if (error)
2133 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Benjamin Coddington52306e82017-07-16 10:28:21 -04002135 flock->l_type = fl->fl_type;
2136 if (fl->fl_type != F_UNLCK) {
2137 error = posix_lock_to_flock(flock, fl);
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05002138 if (error)
Benjamin Coddington52306e82017-07-16 10:28:21 -04002139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141out:
Benjamin Coddington52306e82017-07-16 10:28:21 -04002142 locks_free_lock(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 return error;
2144}
2145
Marc Eshel7723ec92007-01-18 15:08:55 -05002146/**
2147 * vfs_lock_file - file byte range lock
2148 * @filp: The file to apply the lock to
2149 * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
2150 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05002151 * @conf: Place to return a copy of the conflicting lock, if found.
2152 *
2153 * A caller that doesn't care about the conflicting lock may pass NULL
2154 * as the final argument.
2155 *
2156 * If the filesystem defines a private ->lock() method, then @conf will
2157 * be left unchanged; so a caller that cares should initialize it to
2158 * some acceptable default.
Marc Eshel2beb6612006-12-05 23:31:28 -05002159 *
2160 * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
2161 * locks, the ->lock() interface may return asynchronously, before the lock has
2162 * been granted or denied by the underlying filesystem, if (and only if)
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002163 * lm_grant is set. Callers expecting ->lock() to return asynchronously
Marc Eshel2beb6612006-12-05 23:31:28 -05002164 * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
2165 * the request is for a blocking lock. When ->lock() does return asynchronously,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002166 * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
Marc Eshel2beb6612006-12-05 23:31:28 -05002167 * request completes.
2168 * If the request is for non-blocking lock the file system should return
Miklos Szeredibde74e42008-07-25 01:48:57 -07002169 * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
2170 * with the result. If the request timed out the callback routine will return a
Marc Eshel2beb6612006-12-05 23:31:28 -05002171 * nonzero return code and the file system should release the lock. The file
2172 * system is also responsible to keep a corresponding posix lock when it
2173 * grants a lock so the VFS can find out which locks are locally held and do
2174 * the correct lock cleanup when required.
2175 * The underlying filesystem must not drop the kernel lock or call
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002176 * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
Marc Eshel2beb6612006-12-05 23:31:28 -05002177 * return code.
Marc Eshel7723ec92007-01-18 15:08:55 -05002178 */
Marc Eshel150b3932007-01-18 16:15:35 -05002179int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
Marc Eshel7723ec92007-01-18 15:08:55 -05002180{
Miklos Szeredic568d682016-09-16 12:44:20 +02002181 if (filp->f_op->lock && is_remote_lock(filp))
Marc Eshel7723ec92007-01-18 15:08:55 -05002182 return filp->f_op->lock(filp, cmd, fl);
2183 else
Marc Eshel150b3932007-01-18 16:15:35 -05002184 return posix_lock_file(filp, fl, conf);
Marc Eshel7723ec92007-01-18 15:08:55 -05002185}
2186EXPORT_SYMBOL_GPL(vfs_lock_file);
2187
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002188static int do_lock_file_wait(struct file *filp, unsigned int cmd,
2189 struct file_lock *fl)
2190{
2191 int error;
2192
2193 error = security_file_lock(filp, fl->fl_type);
2194 if (error)
2195 return error;
2196
Miklos Szeredi764c76b2008-07-25 01:48:58 -07002197 for (;;) {
2198 error = vfs_lock_file(filp, cmd, fl, NULL);
2199 if (error != FILE_LOCK_DEFERRED)
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002200 break;
Miklos Szeredi764c76b2008-07-25 01:48:58 -07002201 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
2202 if (!error)
2203 continue;
2204
2205 locks_delete_block(fl);
2206 break;
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002207 }
2208
2209 return error;
2210}
2211
Benjamin Coddington6ca7d912015-10-15 09:07:07 -04002212/* Ensure that fl->fl_file has compatible f_mode for F_SETLK calls */
Jeff Laytoncf01f4e2014-05-09 11:41:54 -04002213static int
2214check_fmode_for_setlk(struct file_lock *fl)
2215{
2216 switch (fl->fl_type) {
2217 case F_RDLCK:
2218 if (!(fl->fl_file->f_mode & FMODE_READ))
2219 return -EBADF;
2220 break;
2221 case F_WRLCK:
2222 if (!(fl->fl_file->f_mode & FMODE_WRITE))
2223 return -EBADF;
2224 }
2225 return 0;
2226}
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228/* Apply the lock described by l to an open file descriptor.
2229 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2230 */
Peter Staubachc2936212005-07-27 11:45:09 -07002231int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002232 struct flock *flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
2234 struct file_lock *file_lock = locks_alloc_lock();
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002235 struct inode *inode = locks_inode(filp);
Al Viro0b2bac22008-05-06 13:58:34 -04002236 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 int error;
2238
2239 if (file_lock == NULL)
2240 return -ENOLCK;
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 /* Don't allow mandatory locks on files that may be memory mapped
2243 * and shared.
2244 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002245 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 error = -EAGAIN;
2247 goto out;
2248 }
2249
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002250 error = flock_to_posix_lock(filp, file_lock, flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if (error)
2252 goto out;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002253
Jeff Laytoncf01f4e2014-05-09 11:41:54 -04002254 error = check_fmode_for_setlk(file_lock);
2255 if (error)
2256 goto out;
2257
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002258 /*
2259 * If the cmd is requesting file-private locks, then set the
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002260 * FL_OFDLCK flag and override the owner.
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002261 */
2262 switch (cmd) {
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002263 case F_OFD_SETLK:
Jeff Layton90478932014-03-04 10:30:23 -05002264 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002265 if (flock->l_pid != 0)
Jeff Layton90478932014-03-04 10:30:23 -05002266 goto out;
2267
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002268 cmd = F_SETLK;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002269 file_lock->fl_flags |= FL_OFDLCK;
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02002270 file_lock->fl_owner = filp;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002271 break;
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002272 case F_OFD_SETLKW:
Jeff Layton90478932014-03-04 10:30:23 -05002273 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002274 if (flock->l_pid != 0)
Jeff Layton90478932014-03-04 10:30:23 -05002275 goto out;
2276
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002277 cmd = F_SETLKW;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002278 file_lock->fl_flags |= FL_OFDLCK;
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02002279 file_lock->fl_owner = filp;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002280 /* Fallthrough */
2281 case F_SETLKW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 file_lock->fl_flags |= FL_SLEEP;
2283 }
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002284
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002285 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Peter Staubachc2936212005-07-27 11:45:09 -07002287 /*
Jeff Layton0752ba82016-01-08 07:30:43 -05002288 * Attempt to detect a close/fcntl race and recover by releasing the
2289 * lock that was just acquired. There is no need to do that when we're
2290 * unlocking though, or for OFD locks.
Peter Staubachc2936212005-07-27 11:45:09 -07002291 */
Jeff Layton0752ba82016-01-08 07:30:43 -05002292 if (!error && file_lock->fl_type != F_UNLCK &&
2293 !(file_lock->fl_flags & FL_OFDLCK)) {
Jeff Layton7f3697e2016-01-07 16:38:10 -05002294 /*
2295 * We need that spin_lock here - it prevents reordering between
2296 * update of i_flctx->flc_posix and check for it done in
2297 * close(). rcu_read_lock() wouldn't do.
2298 */
2299 spin_lock(&current->files->file_lock);
2300 f = fcheck(fd);
2301 spin_unlock(&current->files->file_lock);
2302 if (f != filp) {
2303 file_lock->fl_type = F_UNLCK;
2304 error = do_lock_file_wait(filp, cmd, file_lock);
2305 WARN_ON_ONCE(error);
2306 error = -EBADF;
2307 }
Peter Staubachc2936212005-07-27 11:45:09 -07002308 }
Peter Staubachc2936212005-07-27 11:45:09 -07002309out:
Jeff Layton18909102016-01-06 21:26:10 -05002310 trace_fcntl_setlk(inode, file_lock, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 locks_free_lock(file_lock);
2312 return error;
2313}
2314
2315#if BITS_PER_LONG == 32
2316/* Report the first existing lock that would conflict with l.
2317 * This implements the F_GETLK command of fcntl().
2318 */
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002319int fcntl_getlk64(struct file *filp, unsigned int cmd, struct flock64 *flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
Benjamin Coddington52306e82017-07-16 10:28:21 -04002321 struct file_lock *fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 int error;
2323
Benjamin Coddington52306e82017-07-16 10:28:21 -04002324 fl = locks_alloc_lock();
2325 if (fl == NULL)
2326 return -ENOMEM;
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002329 if (flock->l_type != F_RDLCK && flock->l_type != F_WRLCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 goto out;
2331
Benjamin Coddington52306e82017-07-16 10:28:21 -04002332 error = flock64_to_posix_lock(filp, fl, flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (error)
2334 goto out;
2335
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002336 if (cmd == F_OFD_GETLK) {
Jeff Layton90478932014-03-04 10:30:23 -05002337 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002338 if (flock->l_pid != 0)
Jeff Layton90478932014-03-04 10:30:23 -05002339 goto out;
2340
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002341 cmd = F_GETLK64;
Benjamin Coddington52306e82017-07-16 10:28:21 -04002342 fl->fl_flags |= FL_OFDLCK;
2343 fl->fl_owner = filp;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002344 }
2345
Benjamin Coddington52306e82017-07-16 10:28:21 -04002346 error = vfs_test_lock(filp, fl);
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002347 if (error)
2348 goto out;
2349
Benjamin Coddington52306e82017-07-16 10:28:21 -04002350 flock->l_type = fl->fl_type;
2351 if (fl->fl_type != F_UNLCK)
2352 posix_lock_to_flock64(flock, fl);
Kinglong Meef3282962014-08-22 10:18:43 -04002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354out:
Benjamin Coddington52306e82017-07-16 10:28:21 -04002355 locks_free_lock(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 return error;
2357}
2358
2359/* Apply the lock described by l to an open file descriptor.
2360 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2361 */
Peter Staubachc2936212005-07-27 11:45:09 -07002362int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002363 struct flock64 *flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
2365 struct file_lock *file_lock = locks_alloc_lock();
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002366 struct inode *inode = locks_inode(filp);
Al Viro0b2bac22008-05-06 13:58:34 -04002367 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 int error;
2369
2370 if (file_lock == NULL)
2371 return -ENOLCK;
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 /* Don't allow mandatory locks on files that may be memory mapped
2374 * and shared.
2375 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002376 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 error = -EAGAIN;
2378 goto out;
2379 }
2380
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002381 error = flock64_to_posix_lock(filp, file_lock, flock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 if (error)
2383 goto out;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002384
Jeff Laytoncf01f4e2014-05-09 11:41:54 -04002385 error = check_fmode_for_setlk(file_lock);
2386 if (error)
2387 goto out;
2388
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002389 /*
2390 * If the cmd is requesting file-private locks, then set the
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002391 * FL_OFDLCK flag and override the owner.
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002392 */
2393 switch (cmd) {
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002394 case F_OFD_SETLK:
Jeff Layton90478932014-03-04 10:30:23 -05002395 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002396 if (flock->l_pid != 0)
Jeff Layton90478932014-03-04 10:30:23 -05002397 goto out;
2398
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002399 cmd = F_SETLK64;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002400 file_lock->fl_flags |= FL_OFDLCK;
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02002401 file_lock->fl_owner = filp;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002402 break;
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002403 case F_OFD_SETLKW:
Jeff Layton90478932014-03-04 10:30:23 -05002404 error = -EINVAL;
Christoph Hellwiga75d30c2017-05-27 06:07:19 -04002405 if (flock->l_pid != 0)
Jeff Layton90478932014-03-04 10:30:23 -05002406 goto out;
2407
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002408 cmd = F_SETLKW64;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002409 file_lock->fl_flags |= FL_OFDLCK;
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02002410 file_lock->fl_owner = filp;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002411 /* Fallthrough */
2412 case F_SETLKW64:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 file_lock->fl_flags |= FL_SLEEP;
2414 }
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002415
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002416 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Peter Staubachc2936212005-07-27 11:45:09 -07002418 /*
Jeff Layton0752ba82016-01-08 07:30:43 -05002419 * Attempt to detect a close/fcntl race and recover by releasing the
2420 * lock that was just acquired. There is no need to do that when we're
2421 * unlocking though, or for OFD locks.
Peter Staubachc2936212005-07-27 11:45:09 -07002422 */
Jeff Layton0752ba82016-01-08 07:30:43 -05002423 if (!error && file_lock->fl_type != F_UNLCK &&
2424 !(file_lock->fl_flags & FL_OFDLCK)) {
Jeff Layton7f3697e2016-01-07 16:38:10 -05002425 /*
2426 * We need that spin_lock here - it prevents reordering between
2427 * update of i_flctx->flc_posix and check for it done in
2428 * close(). rcu_read_lock() wouldn't do.
2429 */
2430 spin_lock(&current->files->file_lock);
2431 f = fcheck(fd);
2432 spin_unlock(&current->files->file_lock);
2433 if (f != filp) {
2434 file_lock->fl_type = F_UNLCK;
2435 error = do_lock_file_wait(filp, cmd, file_lock);
2436 WARN_ON_ONCE(error);
2437 error = -EBADF;
2438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440out:
2441 locks_free_lock(file_lock);
2442 return error;
2443}
2444#endif /* BITS_PER_LONG == 32 */
2445
2446/*
2447 * This function is called when the file is being removed
2448 * from the task's fd array. POSIX locks belonging to this task
2449 * are deleted at this time.
2450 */
2451void locks_remove_posix(struct file *filp, fl_owner_t owner)
2452{
Jeff Layton18909102016-01-06 21:26:10 -05002453 int error;
Miklos Szeredic568d682016-09-16 12:44:20 +02002454 struct inode *inode = locks_inode(filp);
Miklos Szerediff7b86b2006-06-23 02:05:11 -07002455 struct file_lock lock;
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002456 struct file_lock_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
2458 /*
2459 * If there are no locks held on this file, we don't need to call
2460 * posix_lock_file(). Another process could be setting a lock on this
2461 * file at the same time, but we wouldn't remove that lock anyway.
2462 */
Miklos Szeredic568d682016-09-16 12:44:20 +02002463 ctx = smp_load_acquire(&inode->i_flctx);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -05002464 if (!ctx || list_empty(&ctx->flc_posix))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 return;
2466
2467 lock.fl_type = F_UNLCK;
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07002468 lock.fl_flags = FL_POSIX | FL_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 lock.fl_start = 0;
2470 lock.fl_end = OFFSET_MAX;
2471 lock.fl_owner = owner;
2472 lock.fl_pid = current->tgid;
2473 lock.fl_file = filp;
2474 lock.fl_ops = NULL;
2475 lock.fl_lmops = NULL;
2476
Jeff Layton18909102016-01-06 21:26:10 -05002477 error = vfs_lock_file(filp, F_SETLK, &lock, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if (lock.fl_ops && lock.fl_ops->fl_release_private)
2480 lock.fl_ops->fl_release_private(&lock);
Miklos Szeredic568d682016-09-16 12:44:20 +02002481 trace_locks_remove_posix(inode, &lock, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482}
2483
2484EXPORT_SYMBOL(locks_remove_posix);
2485
Jeff Layton3d8e5602015-01-16 15:05:58 -05002486/* The i_flctx must be valid when calling into here */
Jeff Laytondd459bb2015-01-16 15:05:54 -05002487static void
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002488locks_remove_flock(struct file *filp, struct file_lock_context *flctx)
Jeff Laytondd459bb2015-01-16 15:05:54 -05002489{
2490 struct file_lock fl = {
2491 .fl_owner = filp,
2492 .fl_pid = current->tgid,
2493 .fl_file = filp,
Benjamin Coddington50f21122017-04-11 12:50:09 -04002494 .fl_flags = FL_FLOCK | FL_CLOSE,
Jeff Laytondd459bb2015-01-16 15:05:54 -05002495 .fl_type = F_UNLCK,
2496 .fl_end = OFFSET_MAX,
2497 };
Miklos Szeredic568d682016-09-16 12:44:20 +02002498 struct inode *inode = locks_inode(filp);
Jeff Laytondd459bb2015-01-16 15:05:54 -05002499
Jeff Layton3d8e5602015-01-16 15:05:58 -05002500 if (list_empty(&flctx->flc_flock))
Jeff Laytondd459bb2015-01-16 15:05:54 -05002501 return;
2502
Miklos Szeredic568d682016-09-16 12:44:20 +02002503 if (filp->f_op->flock && is_remote_lock(filp))
Jeff Laytondd459bb2015-01-16 15:05:54 -05002504 filp->f_op->flock(filp, F_SETLKW, &fl);
2505 else
Jeff Laytonbcd7f782015-07-11 06:43:02 -04002506 flock_lock_inode(inode, &fl);
Jeff Laytondd459bb2015-01-16 15:05:54 -05002507
2508 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2509 fl.fl_ops->fl_release_private(&fl);
2510}
2511
Jeff Layton3d8e5602015-01-16 15:05:58 -05002512/* The i_flctx must be valid when calling into here */
Jeff Layton8634b512015-01-16 15:05:55 -05002513static void
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002514locks_remove_lease(struct file *filp, struct file_lock_context *ctx)
Jeff Layton8634b512015-01-16 15:05:55 -05002515{
Jeff Layton8634b512015-01-16 15:05:55 -05002516 struct file_lock *fl, *tmp;
2517 LIST_HEAD(dispose);
2518
Jeff Layton3d8e5602015-01-16 15:05:58 -05002519 if (list_empty(&ctx->flc_lease))
Jeff Layton8634b512015-01-16 15:05:55 -05002520 return;
2521
Peter Zijlstra5f430862016-10-08 10:12:28 +02002522 percpu_down_read_preempt_disable(&file_rwsem);
Jeff Layton6109c852015-01-16 15:05:57 -05002523 spin_lock(&ctx->flc_lock);
Jeff Layton8634b512015-01-16 15:05:55 -05002524 list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list)
Jeff Laytonc4e136c2015-02-16 19:37:42 -05002525 if (filp == fl->fl_file)
2526 lease_modify(fl, F_UNLCK, &dispose);
Jeff Layton6109c852015-01-16 15:05:57 -05002527 spin_unlock(&ctx->flc_lock);
Peter Zijlstra5f430862016-10-08 10:12:28 +02002528 percpu_up_read_preempt_enable(&file_rwsem);
2529
Jeff Layton8634b512015-01-16 15:05:55 -05002530 locks_dispose_list(&dispose);
2531}
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533/*
2534 * This function is called on the last close of an open file.
2535 */
Jeff Layton78ed8a12014-02-03 12:13:08 -05002536void locks_remove_file(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002538 struct file_lock_context *ctx;
2539
Miklos Szeredic568d682016-09-16 12:44:20 +02002540 ctx = smp_load_acquire(&locks_inode(filp)->i_flctx);
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002541 if (!ctx)
Jeff Layton3d8e5602015-01-16 15:05:58 -05002542 return;
2543
Jeff Laytondd459bb2015-01-16 15:05:54 -05002544 /* remove any OFD locks */
Christoph Hellwig73a8f5f2014-07-13 17:00:38 +02002545 locks_remove_posix(filp, filp);
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002546
Jeff Laytondd459bb2015-01-16 15:05:54 -05002547 /* remove flock locks */
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002548 locks_remove_flock(filp, ctx);
Jeff Laytondd459bb2015-01-16 15:05:54 -05002549
Jeff Layton8634b512015-01-16 15:05:55 -05002550 /* remove any leases */
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002551 locks_remove_lease(filp, ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
2553
2554/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 * posix_unblock_lock - stop waiting for a file lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 * @waiter: the lock which was waiting
2557 *
2558 * lockd needs to block waiting for locks.
2559 */
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002560int
Jeff Laytonf891a292013-06-21 08:58:09 -04002561posix_unblock_lock(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002563 int status = 0;
2564
Jeff Layton7b2296a2013-06-21 08:58:20 -04002565 spin_lock(&blocked_lock_lock);
J. Bruce Fields5996a292006-01-03 09:55:44 +01002566 if (waiter->fl_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 __locks_delete_block(waiter);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002568 else
2569 status = -ENOENT;
Jeff Layton7b2296a2013-06-21 08:58:20 -04002570 spin_unlock(&blocked_lock_lock);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002571 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573EXPORT_SYMBOL(posix_unblock_lock);
2574
Marc Eshel9b9d2ab2007-01-18 17:52:58 -05002575/**
2576 * vfs_cancel_lock - file byte range unblock lock
2577 * @filp: The file to apply the unblock to
2578 * @fl: The lock to be unblocked
2579 *
2580 * Used by lock managers to cancel blocked requests
2581 */
2582int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
2583{
Miklos Szeredic568d682016-09-16 12:44:20 +02002584 if (filp->f_op->lock && is_remote_lock(filp))
Marc Eshel9b9d2ab2007-01-18 17:52:58 -05002585 return filp->f_op->lock(filp, F_CANCELLK, fl);
2586 return 0;
2587}
2588
2589EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2590
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002591#ifdef CONFIG_PROC_FS
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002592#include <linux/proc_fs.h>
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002593#include <linux/seq_file.h>
2594
Jeff Layton7012b022013-06-21 08:58:22 -04002595struct locks_iterator {
2596 int li_cpu;
2597 loff_t li_pos;
2598};
2599
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002600static void lock_get_status(struct seq_file *f, struct file_lock *fl,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002601 loff_t id, char *pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
2603 struct inode *inode = NULL;
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002604 unsigned int fl_pid;
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002605 struct pid_namespace *proc_pidns = file_inode(f->file)->i_sb->s_fs_info;
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002606
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002607 fl_pid = locks_translate_pid(fl, proc_pidns);
2608 /*
2609 * If there isn't a fl_pid don't display who is waiting on
2610 * the lock if we are called from locks_show, or if we are
2611 * called from __show_fd_info - skip lock entirely
2612 */
2613 if (fl_pid == 0)
2614 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 if (fl->fl_file != NULL)
Miklos Szeredic568d682016-09-16 12:44:20 +02002617 inode = locks_inode(fl->fl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Jerome Marchand99dc8292010-10-26 14:22:33 -07002619 seq_printf(f, "%lld:%s ", id, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if (IS_POSIX(fl)) {
Jeff Laytonc918d422014-02-03 12:13:09 -05002621 if (fl->fl_flags & FL_ACCESS)
Fabian Frederick5315c262014-05-09 14:13:05 -04002622 seq_puts(f, "ACCESS");
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002623 else if (IS_OFDLCK(fl))
Fabian Frederick5315c262014-05-09 14:13:05 -04002624 seq_puts(f, "OFDLCK");
Jeff Laytonc918d422014-02-03 12:13:09 -05002625 else
Fabian Frederick5315c262014-05-09 14:13:05 -04002626 seq_puts(f, "POSIX ");
Jeff Laytonc918d422014-02-03 12:13:09 -05002627
2628 seq_printf(f, " %s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 (inode == NULL) ? "*NOINODE*" :
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002630 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 } else if (IS_FLOCK(fl)) {
2632 if (fl->fl_type & LOCK_MAND) {
Fabian Frederick5315c262014-05-09 14:13:05 -04002633 seq_puts(f, "FLOCK MSNFS ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 } else {
Fabian Frederick5315c262014-05-09 14:13:05 -04002635 seq_puts(f, "FLOCK ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
2637 } else if (IS_LEASE(fl)) {
Jeff Layton8144f1f2014-08-11 13:36:54 -04002638 if (fl->fl_flags & FL_DELEG)
2639 seq_puts(f, "DELEG ");
2640 else
2641 seq_puts(f, "LEASE ");
2642
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002643 if (lease_breaking(fl))
Fabian Frederick5315c262014-05-09 14:13:05 -04002644 seq_puts(f, "BREAKING ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 else if (fl->fl_file)
Fabian Frederick5315c262014-05-09 14:13:05 -04002646 seq_puts(f, "ACTIVE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 else
Fabian Frederick5315c262014-05-09 14:13:05 -04002648 seq_puts(f, "BREAKER ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 } else {
Fabian Frederick5315c262014-05-09 14:13:05 -04002650 seq_puts(f, "UNKNOWN UNKNOWN ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 }
2652 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002653 seq_printf(f, "%s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 (fl->fl_type & LOCK_READ)
2655 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
2656 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2657 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002658 seq_printf(f, "%s ",
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002659 (lease_breaking(fl))
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04002660 ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2661 : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
2663 if (inode) {
Jeff Layton36488882015-04-03 09:04:04 -04002664 /* userspace relies on this representation of dev_t */
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002665 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 MAJOR(inode->i_sb->s_dev),
2667 MINOR(inode->i_sb->s_dev), inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 } else {
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002669 seq_printf(f, "%d <none>:0 ", fl_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 }
2671 if (IS_POSIX(fl)) {
2672 if (fl->fl_end == OFFSET_MAX)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002673 seq_printf(f, "%Ld EOF\n", fl->fl_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002675 seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 } else {
Fabian Frederick5315c262014-05-09 14:13:05 -04002677 seq_puts(f, "0 EOF\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
2679}
2680
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002681static int locks_show(struct seq_file *f, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
Jeff Layton7012b022013-06-21 08:58:22 -04002683 struct locks_iterator *iter = f->private;
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002684 struct file_lock *fl, *bfl;
Nikolay Borisovd67fd442016-08-17 16:18:46 -04002685 struct pid_namespace *proc_pidns = file_inode(f->file)->i_sb->s_fs_info;
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002686
Jeff Layton139ca042013-06-21 08:58:17 -04002687 fl = hlist_entry(v, struct file_lock, fl_link);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002688
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002689 if (locks_translate_pid(fl, proc_pidns) == 0)
Nikolay Borisovd67fd442016-08-17 16:18:46 -04002690 return 0;
2691
Jeff Layton7012b022013-06-21 08:58:22 -04002692 lock_get_status(f, fl, iter->li_pos, "");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002693
2694 list_for_each_entry(bfl, &fl->fl_block, fl_block)
Jeff Layton7012b022013-06-21 08:58:22 -04002695 lock_get_status(f, bfl, iter->li_pos, " ->");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002696
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
Andrey Vagin6c8c9032015-04-16 12:49:38 -07002700static void __show_fd_locks(struct seq_file *f,
2701 struct list_head *head, int *id,
2702 struct file *filp, struct files_struct *files)
2703{
2704 struct file_lock *fl;
2705
2706 list_for_each_entry(fl, head, fl_list) {
2707
2708 if (filp != fl->fl_file)
2709 continue;
2710 if (fl->fl_owner != files &&
2711 fl->fl_owner != filp)
2712 continue;
2713
2714 (*id)++;
2715 seq_puts(f, "lock:\t");
2716 lock_get_status(f, fl, *id, "");
2717 }
2718}
2719
2720void show_fd_locks(struct seq_file *f,
2721 struct file *filp, struct files_struct *files)
2722{
Miklos Szeredic568d682016-09-16 12:44:20 +02002723 struct inode *inode = locks_inode(filp);
Andrey Vagin6c8c9032015-04-16 12:49:38 -07002724 struct file_lock_context *ctx;
2725 int id = 0;
2726
Dmitry Vyukov128a3782015-09-21 09:43:06 +02002727 ctx = smp_load_acquire(&inode->i_flctx);
Andrey Vagin6c8c9032015-04-16 12:49:38 -07002728 if (!ctx)
2729 return;
2730
2731 spin_lock(&ctx->flc_lock);
2732 __show_fd_locks(f, &ctx->flc_flock, &id, filp, files);
2733 __show_fd_locks(f, &ctx->flc_posix, &id, filp, files);
2734 __show_fd_locks(f, &ctx->flc_lease, &id, filp, files);
2735 spin_unlock(&ctx->flc_lock);
2736}
2737
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002738static void *locks_start(struct seq_file *f, loff_t *pos)
Jeff Laytonb03dfdec2014-02-03 12:13:07 -05002739 __acquires(&blocked_lock_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Jeff Layton7012b022013-06-21 08:58:22 -04002741 struct locks_iterator *iter = f->private;
Jerome Marchand99dc8292010-10-26 14:22:33 -07002742
Jeff Layton7012b022013-06-21 08:58:22 -04002743 iter->li_pos = *pos + 1;
Peter Zijlstraaba37662015-06-22 14:16:33 +02002744 percpu_down_write(&file_rwsem);
Jeff Layton7b2296a2013-06-21 08:58:20 -04002745 spin_lock(&blocked_lock_lock);
Peter Zijlstra7c3f6542015-06-22 14:16:34 +02002746 return seq_hlist_start_percpu(&file_lock_list.hlist, &iter->li_cpu, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002749static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2750{
Jeff Layton7012b022013-06-21 08:58:22 -04002751 struct locks_iterator *iter = f->private;
2752
2753 ++iter->li_pos;
Peter Zijlstra7c3f6542015-06-22 14:16:34 +02002754 return seq_hlist_next_percpu(v, &file_lock_list.hlist, &iter->li_cpu, pos);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002755}
2756
2757static void locks_stop(struct seq_file *f, void *v)
Jeff Laytonb03dfdec2014-02-03 12:13:07 -05002758 __releases(&blocked_lock_lock)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002759{
Jeff Layton7b2296a2013-06-21 08:58:20 -04002760 spin_unlock(&blocked_lock_lock);
Peter Zijlstraaba37662015-06-22 14:16:33 +02002761 percpu_up_write(&file_rwsem);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002762}
2763
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002764static const struct seq_operations locks_seq_operations = {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002765 .start = locks_start,
2766 .next = locks_next,
2767 .stop = locks_stop,
2768 .show = locks_show,
2769};
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002770
2771static int locks_open(struct inode *inode, struct file *filp)
2772{
Jeff Layton7012b022013-06-21 08:58:22 -04002773 return seq_open_private(filp, &locks_seq_operations,
2774 sizeof(struct locks_iterator));
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002775}
2776
2777static const struct file_operations proc_locks_operations = {
2778 .open = locks_open,
2779 .read = seq_read,
2780 .llseek = seq_lseek,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002781 .release = seq_release_private,
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002782};
2783
2784static int __init proc_locks_init(void)
2785{
2786 proc_create("locks", 0, NULL, &proc_locks_operations);
2787 return 0;
2788}
Paul Gortmaker91899222015-12-17 14:11:03 -05002789fs_initcall(proc_locks_init);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002790#endif
2791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792static int __init filelock_init(void)
2793{
Jeff Layton7012b022013-06-21 08:58:22 -04002794 int i;
2795
Jeff Layton4a075e32015-01-16 15:05:54 -05002796 flctx_cache = kmem_cache_create("file_lock_ctx",
2797 sizeof(struct file_lock_context), 0, SLAB_PANIC, NULL);
2798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 filelock_cache = kmem_cache_create("file_lock_cache",
Miklos Szerediee19cc42011-07-07 13:06:09 +02002800 sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2801
Jeff Layton7012b022013-06-21 08:58:22 -04002802
Peter Zijlstra7c3f6542015-06-22 14:16:34 +02002803 for_each_possible_cpu(i) {
2804 struct file_lock_list_struct *fll = per_cpu_ptr(&file_lock_list, i);
2805
2806 spin_lock_init(&fll->lock);
2807 INIT_HLIST_HEAD(&fll->hlist);
2808 }
Jeff Layton7012b022013-06-21 08:58:22 -04002809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return 0;
2811}
2812
2813core_initcall(filelock_init);