]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/locks.c
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / fs / locks.c
CommitLineData
1da177e4
LT
1/*
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.
395cf969 63 * See 'Documentation/filesystems/mandatory-locking.txt' for details.
1da177e4
LT
64 * 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>
9f3acc31 119#include <linux/fdtable.h>
1da177e4
LT
120#include <linux/fs.h>
121#include <linux/init.h>
1da177e4
LT
122#include <linux/security.h>
123#include <linux/slab.h>
1da177e4
LT
124#include <linux/syscalls.h>
125#include <linux/time.h>
4fb3a538 126#include <linux/rcupdate.h>
ab1f1611 127#include <linux/pid_namespace.h>
48f74186 128#include <linux/hashtable.h>
7012b02a 129#include <linux/percpu.h>
1da177e4 130
62af4f1f
JL
131#define CREATE_TRACE_POINTS
132#include <trace/events/filelock.h>
133
7c0f6ba6 134#include <linux/uaccess.h>
1da177e4
LT
135
136#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
137#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
11afe9f7 138#define IS_LEASE(fl) (fl->fl_flags & (FL_LEASE|FL_DELEG|FL_LAYOUT))
cff2fce5 139#define IS_OFDLCK(fl) (fl->fl_flags & FL_OFDLCK)
1da177e4 140
c568d683
MS
141static inline bool is_remote_lock(struct file *filp)
142{
143 return likely(!(filp->f_path.dentry->d_sb->s_flags & MS_NOREMOTELOCK));
144}
145
ab83fa4b
BF
146static bool lease_breaking(struct file_lock *fl)
147{
778fc546
BF
148 return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
149}
150
151static int target_leasetype(struct file_lock *fl)
152{
153 if (fl->fl_flags & FL_UNLOCK_PENDING)
154 return F_UNLCK;
155 if (fl->fl_flags & FL_DOWNGRADE_PENDING)
156 return F_RDLCK;
157 return fl->fl_type;
ab83fa4b
BF
158}
159
1da177e4
LT
160int leases_enable = 1;
161int lease_break_time = 45;
162
1c8c601a 163/*
7012b02a 164 * The global file_lock_list is only used for displaying /proc/locks, so we
7c3f654d
PZ
165 * keep a list on each CPU, with each list protected by its own spinlock.
166 * Global serialization is done using file_rwsem.
167 *
168 * Note that alterations to the list also require that the relevant flc_lock is
169 * held.
1c8c601a 170 */
7c3f654d
PZ
171struct file_lock_list_struct {
172 spinlock_t lock;
173 struct hlist_head hlist;
174};
175static DEFINE_PER_CPU(struct file_lock_list_struct, file_lock_list);
aba37660 176DEFINE_STATIC_PERCPU_RWSEM(file_rwsem);
88974691 177
1c8c601a 178/*
48f74186 179 * The blocked_hash is used to find POSIX lock loops for deadlock detection.
7b2296af 180 * It is protected by blocked_lock_lock.
48f74186
JL
181 *
182 * We hash locks by lockowner in order to optimize searching for the lock a
183 * particular lockowner is waiting on.
184 *
185 * FIXME: make this value scale via some heuristic? We generally will want more
186 * buckets when we have more lockowners holding locks, but that's a little
187 * difficult to determine without knowing what the workload will look like.
1c8c601a 188 */
48f74186
JL
189#define BLOCKED_HASH_BITS 7
190static DEFINE_HASHTABLE(blocked_hash, BLOCKED_HASH_BITS);
88974691 191
1c8c601a 192/*
7b2296af
JL
193 * This lock protects the blocked_hash. Generally, if you're accessing it, you
194 * want to be holding this lock.
1c8c601a
JL
195 *
196 * In addition, it also protects the fl->fl_block list, and the fl->fl_next
197 * pointer for file_lock structures that are acting as lock requests (in
198 * contrast to those that are acting as records of acquired locks).
199 *
200 * Note that when we acquire this lock in order to change the above fields,
6109c850 201 * we often hold the flc_lock as well. In certain cases, when reading the fields
1c8c601a 202 * protected by this lock, we can skip acquiring it iff we already hold the
6109c850 203 * flc_lock.
1c8c601a
JL
204 *
205 * In particular, adding an entry to the fl_block list requires that you hold
6109c850
JL
206 * both the flc_lock and the blocked_lock_lock (acquired in that order).
207 * Deleting an entry from the list however only requires the file_lock_lock.
1c8c601a 208 */
7b2296af 209static DEFINE_SPINLOCK(blocked_lock_lock);
1da177e4 210
4a075e39 211static struct kmem_cache *flctx_cache __read_mostly;
e18b890b 212static struct kmem_cache *filelock_cache __read_mostly;
1da177e4 213
4a075e39 214static struct file_lock_context *
5c1c669a 215locks_get_lock_context(struct inode *inode, int type)
4a075e39 216{
128a3785 217 struct file_lock_context *ctx;
4a075e39 218
128a3785
DV
219 /* paired with cmpxchg() below */
220 ctx = smp_load_acquire(&inode->i_flctx);
221 if (likely(ctx) || type == F_UNLCK)
4a075e39
JL
222 goto out;
223
128a3785
DV
224 ctx = kmem_cache_alloc(flctx_cache, GFP_KERNEL);
225 if (!ctx)
4a075e39
JL
226 goto out;
227
128a3785
DV
228 spin_lock_init(&ctx->flc_lock);
229 INIT_LIST_HEAD(&ctx->flc_flock);
230 INIT_LIST_HEAD(&ctx->flc_posix);
231 INIT_LIST_HEAD(&ctx->flc_lease);
4a075e39
JL
232
233 /*
234 * Assign the pointer if it's not already assigned. If it is, then
235 * free the context we just allocated.
236 */
128a3785
DV
237 if (cmpxchg(&inode->i_flctx, NULL, ctx)) {
238 kmem_cache_free(flctx_cache, ctx);
239 ctx = smp_load_acquire(&inode->i_flctx);
240 }
4a075e39 241out:
1890910f 242 trace_locks_get_lock_context(inode, type, ctx);
128a3785 243 return ctx;
4a075e39
JL
244}
245
e24dadab
JL
246static void
247locks_dump_ctx_list(struct list_head *list, char *list_type)
248{
249 struct file_lock *fl;
250
251 list_for_each_entry(fl, list, fl_list) {
252 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);
253 }
254}
255
256static void
257locks_check_ctx_lists(struct inode *inode)
258{
259 struct file_lock_context *ctx = inode->i_flctx;
260
261 if (unlikely(!list_empty(&ctx->flc_flock) ||
262 !list_empty(&ctx->flc_posix) ||
263 !list_empty(&ctx->flc_lease))) {
264 pr_warn("Leaked locks on dev=0x%x:0x%x ino=0x%lx:\n",
265 MAJOR(inode->i_sb->s_dev), MINOR(inode->i_sb->s_dev),
266 inode->i_ino);
267 locks_dump_ctx_list(&ctx->flc_flock, "FLOCK");
268 locks_dump_ctx_list(&ctx->flc_posix, "POSIX");
269 locks_dump_ctx_list(&ctx->flc_lease, "LEASE");
270 }
271}
272
4a075e39 273void
f27a0fe0 274locks_free_lock_context(struct inode *inode)
4a075e39 275{
f27a0fe0
JL
276 struct file_lock_context *ctx = inode->i_flctx;
277
e24dadab
JL
278 if (unlikely(ctx)) {
279 locks_check_ctx_lists(inode);
4a075e39
JL
280 kmem_cache_free(flctx_cache, ctx);
281 }
282}
283
ee19cc40 284static void locks_init_lock_heads(struct file_lock *fl)
a51cb91d 285{
139ca04e 286 INIT_HLIST_NODE(&fl->fl_link);
6dee60f6 287 INIT_LIST_HEAD(&fl->fl_list);
ee19cc40
MS
288 INIT_LIST_HEAD(&fl->fl_block);
289 init_waitqueue_head(&fl->fl_wait);
a51cb91d
MS
290}
291
1da177e4 292/* Allocate an empty lock structure. */
c5b1f0d9 293struct file_lock *locks_alloc_lock(void)
1da177e4 294{
ee19cc40 295 struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
a51cb91d
MS
296
297 if (fl)
ee19cc40 298 locks_init_lock_heads(fl);
a51cb91d
MS
299
300 return fl;
1da177e4 301}
c5b1f0d9 302EXPORT_SYMBOL_GPL(locks_alloc_lock);
1da177e4 303
a9e61e25 304void locks_release_private(struct file_lock *fl)
47831f35
TM
305{
306 if (fl->fl_ops) {
307 if (fl->fl_ops->fl_release_private)
308 fl->fl_ops->fl_release_private(fl);
309 fl->fl_ops = NULL;
310 }
47831f35 311
5c97d7b1 312 if (fl->fl_lmops) {
cae80b30
JL
313 if (fl->fl_lmops->lm_put_owner) {
314 fl->fl_lmops->lm_put_owner(fl->fl_owner);
315 fl->fl_owner = NULL;
316 }
5c97d7b1
KM
317 fl->fl_lmops = NULL;
318 }
47831f35 319}
a9e61e25 320EXPORT_SYMBOL_GPL(locks_release_private);
47831f35 321
1da177e4 322/* Free a lock which is not in use. */
05fa3135 323void locks_free_lock(struct file_lock *fl)
1da177e4 324{
5ce29646 325 BUG_ON(waitqueue_active(&fl->fl_wait));
6dee60f6 326 BUG_ON(!list_empty(&fl->fl_list));
5ce29646 327 BUG_ON(!list_empty(&fl->fl_block));
139ca04e 328 BUG_ON(!hlist_unhashed(&fl->fl_link));
1da177e4 329
47831f35 330 locks_release_private(fl);
1da177e4
LT
331 kmem_cache_free(filelock_cache, fl);
332}
05fa3135 333EXPORT_SYMBOL(locks_free_lock);
1da177e4 334
ed9814d8
JL
335static void
336locks_dispose_list(struct list_head *dispose)
337{
338 struct file_lock *fl;
339
340 while (!list_empty(dispose)) {
6dee60f6
JL
341 fl = list_first_entry(dispose, struct file_lock, fl_list);
342 list_del_init(&fl->fl_list);
ed9814d8
JL
343 locks_free_lock(fl);
344 }
345}
346
1da177e4
LT
347void locks_init_lock(struct file_lock *fl)
348{
ee19cc40
MS
349 memset(fl, 0, sizeof(struct file_lock));
350 locks_init_lock_heads(fl);
1da177e4
LT
351}
352
353EXPORT_SYMBOL(locks_init_lock);
354
1da177e4
LT
355/*
356 * Initialize a new lock from an existing file_lock structure.
357 */
3fe0fff1 358void locks_copy_conflock(struct file_lock *new, struct file_lock *fl)
1da177e4
LT
359{
360 new->fl_owner = fl->fl_owner;
361 new->fl_pid = fl->fl_pid;
0996905f 362 new->fl_file = NULL;
1da177e4
LT
363 new->fl_flags = fl->fl_flags;
364 new->fl_type = fl->fl_type;
365 new->fl_start = fl->fl_start;
366 new->fl_end = fl->fl_end;
f328296e 367 new->fl_lmops = fl->fl_lmops;
0996905f 368 new->fl_ops = NULL;
f328296e
KM
369
370 if (fl->fl_lmops) {
371 if (fl->fl_lmops->lm_get_owner)
cae80b30 372 fl->fl_lmops->lm_get_owner(fl->fl_owner);
f328296e 373 }
0996905f 374}
3fe0fff1 375EXPORT_SYMBOL(locks_copy_conflock);
0996905f
TM
376
377void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
378{
566709bd
JL
379 /* "new" must be a freshly-initialized lock */
380 WARN_ON_ONCE(new->fl_ops);
0996905f 381
3fe0fff1 382 locks_copy_conflock(new, fl);
f328296e 383
0996905f 384 new->fl_file = fl->fl_file;
1da177e4 385 new->fl_ops = fl->fl_ops;
47831f35 386
f328296e
KM
387 if (fl->fl_ops) {
388 if (fl->fl_ops->fl_copy_lock)
389 fl->fl_ops->fl_copy_lock(new, fl);
390 }
1da177e4
LT
391}
392
393EXPORT_SYMBOL(locks_copy_lock);
394
395static inline int flock_translate_cmd(int cmd) {
396 if (cmd & LOCK_MAND)
397 return cmd & (LOCK_MAND | LOCK_RW);
398 switch (cmd) {
399 case LOCK_SH:
400 return F_RDLCK;
401 case LOCK_EX:
402 return F_WRLCK;
403 case LOCK_UN:
404 return F_UNLCK;
405 }
406 return -EINVAL;
407}
408
409/* Fill in a file_lock structure with an appropriate FLOCK lock. */
6e129d00
JL
410static struct file_lock *
411flock_make_lock(struct file *filp, unsigned int cmd)
1da177e4
LT
412{
413 struct file_lock *fl;
414 int type = flock_translate_cmd(cmd);
6e129d00 415
1da177e4 416 if (type < 0)
6e129d00 417 return ERR_PTR(type);
1da177e4
LT
418
419 fl = locks_alloc_lock();
420 if (fl == NULL)
6e129d00 421 return ERR_PTR(-ENOMEM);
1da177e4
LT
422
423 fl->fl_file = filp;
73a8f5f7 424 fl->fl_owner = filp;
1da177e4
LT
425 fl->fl_pid = current->tgid;
426 fl->fl_flags = FL_FLOCK;
427 fl->fl_type = type;
428 fl->fl_end = OFFSET_MAX;
429
6e129d00 430 return fl;
1da177e4
LT
431}
432
0ec4f431 433static int assign_type(struct file_lock *fl, long type)
1da177e4
LT
434{
435 switch (type) {
436 case F_RDLCK:
437 case F_WRLCK:
438 case F_UNLCK:
439 fl->fl_type = type;
440 break;
441 default:
442 return -EINVAL;
443 }
444 return 0;
445}
446
ef12e72a
BF
447static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
448 struct flock64 *l)
1da177e4 449{
1da177e4 450 switch (l->l_whence) {
f5579f8c 451 case SEEK_SET:
ef12e72a 452 fl->fl_start = 0;
1da177e4 453 break;
f5579f8c 454 case SEEK_CUR:
ef12e72a 455 fl->fl_start = filp->f_pos;
1da177e4 456 break;
f5579f8c 457 case SEEK_END:
ef12e72a 458 fl->fl_start = i_size_read(file_inode(filp));
1da177e4
LT
459 break;
460 default:
461 return -EINVAL;
462 }
ef12e72a
BF
463 if (l->l_start > OFFSET_MAX - fl->fl_start)
464 return -EOVERFLOW;
465 fl->fl_start += l->l_start;
466 if (fl->fl_start < 0)
467 return -EINVAL;
1da177e4
LT
468
469 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
470 POSIX-2001 defines it. */
4c780a46 471 if (l->l_len > 0) {
ef12e72a
BF
472 if (l->l_len - 1 > OFFSET_MAX - fl->fl_start)
473 return -EOVERFLOW;
474 fl->fl_end = fl->fl_start + l->l_len - 1;
475
4c780a46 476 } else if (l->l_len < 0) {
ef12e72a 477 if (fl->fl_start + l->l_len < 0)
4c780a46 478 return -EINVAL;
ef12e72a
BF
479 fl->fl_end = fl->fl_start - 1;
480 fl->fl_start += l->l_len;
481 } else
482 fl->fl_end = OFFSET_MAX;
483
1da177e4
LT
484 fl->fl_owner = current->files;
485 fl->fl_pid = current->tgid;
486 fl->fl_file = filp;
487 fl->fl_flags = FL_POSIX;
488 fl->fl_ops = NULL;
489 fl->fl_lmops = NULL;
490
491 return assign_type(fl, l->l_type);
492}
493
ef12e72a
BF
494/* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
495 * style lock.
496 */
497static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
498 struct flock *l)
1da177e4 499{
ef12e72a
BF
500 struct flock64 ll = {
501 .l_type = l->l_type,
502 .l_whence = l->l_whence,
503 .l_start = l->l_start,
504 .l_len = l->l_len,
505 };
506
507 return flock64_to_posix_lock(filp, fl, &ll);
1da177e4 508}
1da177e4
LT
509
510/* default lease lock manager operations */
4d01b7f5
JL
511static bool
512lease_break_callback(struct file_lock *fl)
1da177e4
LT
513{
514 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
4d01b7f5 515 return false;
1da177e4
LT
516}
517
1c7dd2ff
JL
518static void
519lease_setup(struct file_lock *fl, void **priv)
520{
521 struct file *filp = fl->fl_file;
522 struct fasync_struct *fa = *priv;
523
524 /*
525 * fasync_insert_entry() returns the old entry if any. If there was no
526 * old entry, then it used "priv" and inserted it into the fasync list.
527 * Clear the pointer to indicate that it shouldn't be freed.
528 */
529 if (!fasync_insert_entry(fa->fa_fd, filp, &fl->fl_fasync, fa))
530 *priv = NULL;
531
532 __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
533}
534
7b021967 535static const struct lock_manager_operations lease_manager_ops = {
8fb47a4f 536 .lm_break = lease_break_callback,
8fb47a4f 537 .lm_change = lease_modify,
1c7dd2ff 538 .lm_setup = lease_setup,
1da177e4
LT
539};
540
541/*
542 * Initialize a lease, use the default lock manager operations
543 */
0ec4f431 544static int lease_init(struct file *filp, long type, struct file_lock *fl)
1da177e4 545 {
75dff55a
TM
546 if (assign_type(fl, type) != 0)
547 return -EINVAL;
548
7ca76311 549 fl->fl_owner = filp;
1da177e4
LT
550 fl->fl_pid = current->tgid;
551
552 fl->fl_file = filp;
553 fl->fl_flags = FL_LEASE;
1da177e4
LT
554 fl->fl_start = 0;
555 fl->fl_end = OFFSET_MAX;
556 fl->fl_ops = NULL;
557 fl->fl_lmops = &lease_manager_ops;
558 return 0;
559}
560
561/* Allocate a file_lock initialised to this type of lease */
0ec4f431 562static struct file_lock *lease_alloc(struct file *filp, long type)
1da177e4
LT
563{
564 struct file_lock *fl = locks_alloc_lock();
75dff55a 565 int error = -ENOMEM;
1da177e4
LT
566
567 if (fl == NULL)
e32b8ee2 568 return ERR_PTR(error);
1da177e4
LT
569
570 error = lease_init(filp, type, fl);
75dff55a
TM
571 if (error) {
572 locks_free_lock(fl);
e32b8ee2 573 return ERR_PTR(error);
75dff55a 574 }
e32b8ee2 575 return fl;
1da177e4
LT
576}
577
578/* Check if two locks overlap each other.
579 */
580static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
581{
582 return ((fl1->fl_end >= fl2->fl_start) &&
583 (fl2->fl_end >= fl1->fl_start));
584}
585
586/*
587 * Check whether two locks have the same owner.
588 */
33443c42 589static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
1da177e4 590{
8fb47a4f 591 if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
1da177e4 592 return fl2->fl_lmops == fl1->fl_lmops &&
8fb47a4f 593 fl1->fl_lmops->lm_compare_owner(fl1, fl2);
1da177e4
LT
594 return fl1->fl_owner == fl2->fl_owner;
595}
596
6109c850 597/* Must be called with the flc_lock held! */
6ca10ed8 598static void locks_insert_global_locks(struct file_lock *fl)
88974691 599{
7c3f654d
PZ
600 struct file_lock_list_struct *fll = this_cpu_ptr(&file_lock_list);
601
aba37660
PZ
602 percpu_rwsem_assert_held(&file_rwsem);
603
7c3f654d 604 spin_lock(&fll->lock);
7012b02a 605 fl->fl_link_cpu = smp_processor_id();
7c3f654d
PZ
606 hlist_add_head(&fl->fl_link, &fll->hlist);
607 spin_unlock(&fll->lock);
88974691
JL
608}
609
6109c850 610/* Must be called with the flc_lock held! */
6ca10ed8 611static void locks_delete_global_locks(struct file_lock *fl)
88974691 612{
7c3f654d
PZ
613 struct file_lock_list_struct *fll;
614
aba37660
PZ
615 percpu_rwsem_assert_held(&file_rwsem);
616
7012b02a
JL
617 /*
618 * Avoid taking lock if already unhashed. This is safe since this check
6109c850 619 * is done while holding the flc_lock, and new insertions into the list
7012b02a
JL
620 * also require that it be held.
621 */
622 if (hlist_unhashed(&fl->fl_link))
623 return;
7c3f654d
PZ
624
625 fll = per_cpu_ptr(&file_lock_list, fl->fl_link_cpu);
626 spin_lock(&fll->lock);
139ca04e 627 hlist_del_init(&fl->fl_link);
7c3f654d 628 spin_unlock(&fll->lock);
88974691
JL
629}
630
3999e493
JL
631static unsigned long
632posix_owner_key(struct file_lock *fl)
633{
634 if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
635 return fl->fl_lmops->lm_owner_key(fl);
636 return (unsigned long)fl->fl_owner;
637}
638
6ca10ed8 639static void locks_insert_global_blocked(struct file_lock *waiter)
88974691 640{
663d5af7
DW
641 lockdep_assert_held(&blocked_lock_lock);
642
3999e493 643 hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
88974691
JL
644}
645
6ca10ed8 646static void locks_delete_global_blocked(struct file_lock *waiter)
88974691 647{
663d5af7
DW
648 lockdep_assert_held(&blocked_lock_lock);
649
48f74186 650 hash_del(&waiter->fl_link);
88974691
JL
651}
652
1da177e4
LT
653/* Remove waiter from blocker's block list.
654 * When blocker ends up pointing to itself then the list is empty.
1c8c601a 655 *
7b2296af 656 * Must be called with blocked_lock_lock held.
1da177e4 657 */
33443c42 658static void __locks_delete_block(struct file_lock *waiter)
1da177e4 659{
88974691 660 locks_delete_global_blocked(waiter);
1da177e4 661 list_del_init(&waiter->fl_block);
1da177e4
LT
662 waiter->fl_next = NULL;
663}
664
1a9e64a7 665static void locks_delete_block(struct file_lock *waiter)
1da177e4 666{
7b2296af 667 spin_lock(&blocked_lock_lock);
1da177e4 668 __locks_delete_block(waiter);
7b2296af 669 spin_unlock(&blocked_lock_lock);
1da177e4
LT
670}
671
672/* Insert waiter into blocker's block list.
673 * We use a circular list so that processes can be easily woken up in
674 * the order they blocked. The documentation doesn't require this but
675 * it seems like the reasonable thing to do.
1c8c601a 676 *
6109c850
JL
677 * Must be called with both the flc_lock and blocked_lock_lock held. The
678 * fl_block list itself is protected by the blocked_lock_lock, but by ensuring
679 * that the flc_lock is also held on insertions we can avoid taking the
680 * blocked_lock_lock in some cases when we see that the fl_block list is empty.
1da177e4 681 */
1c8c601a
JL
682static void __locks_insert_block(struct file_lock *blocker,
683 struct file_lock *waiter)
1da177e4 684{
6dc0fe8f 685 BUG_ON(!list_empty(&waiter->fl_block));
1da177e4 686 waiter->fl_next = blocker;
88974691 687 list_add_tail(&waiter->fl_block, &blocker->fl_block);
cff2fce5 688 if (IS_POSIX(blocker) && !IS_OFDLCK(blocker))
1c8c601a
JL
689 locks_insert_global_blocked(waiter);
690}
691
6109c850 692/* Must be called with flc_lock held. */
1c8c601a
JL
693static void locks_insert_block(struct file_lock *blocker,
694 struct file_lock *waiter)
695{
7b2296af 696 spin_lock(&blocked_lock_lock);
1c8c601a 697 __locks_insert_block(blocker, waiter);
7b2296af 698 spin_unlock(&blocked_lock_lock);
1da177e4
LT
699}
700
1cb36012
JL
701/*
702 * Wake up processes blocked waiting for blocker.
703 *
6109c850 704 * Must be called with the inode->flc_lock held!
1da177e4
LT
705 */
706static void locks_wake_up_blocks(struct file_lock *blocker)
707{
4e8c765d
JL
708 /*
709 * Avoid taking global lock if list is empty. This is safe since new
6109c850
JL
710 * blocked requests are only added to the list under the flc_lock, and
711 * the flc_lock is always held here. Note that removal from the fl_block
712 * list does not require the flc_lock, so we must recheck list_empty()
7b2296af 713 * after acquiring the blocked_lock_lock.
4e8c765d
JL
714 */
715 if (list_empty(&blocker->fl_block))
716 return;
717
7b2296af 718 spin_lock(&blocked_lock_lock);
1da177e4 719 while (!list_empty(&blocker->fl_block)) {
f0c1cd0e
PE
720 struct file_lock *waiter;
721
722 waiter = list_first_entry(&blocker->fl_block,
1da177e4
LT
723 struct file_lock, fl_block);
724 __locks_delete_block(waiter);
8fb47a4f
BF
725 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
726 waiter->fl_lmops->lm_notify(waiter);
1da177e4
LT
727 else
728 wake_up(&waiter->fl_wait);
729 }
7b2296af 730 spin_unlock(&blocked_lock_lock);
1da177e4
LT
731}
732
5263e31e 733static void
e084c1bd 734locks_insert_lock_ctx(struct file_lock *fl, struct list_head *before)
5263e31e
JL
735{
736 fl->fl_nspid = get_pid(task_tgid(current));
737 list_add_tail(&fl->fl_list, before);
738 locks_insert_global_locks(fl);
739}
740
8634b51f 741static void
e084c1bd 742locks_unlink_lock_ctx(struct file_lock *fl)
1da177e4 743{
88974691 744 locks_delete_global_locks(fl);
8634b51f 745 list_del_init(&fl->fl_list);
ab1f1611
VG
746 if (fl->fl_nspid) {
747 put_pid(fl->fl_nspid);
748 fl->fl_nspid = NULL;
749 }
1da177e4 750 locks_wake_up_blocks(fl);
24cbe784
JL
751}
752
8634b51f 753static void
e084c1bd 754locks_delete_lock_ctx(struct file_lock *fl, struct list_head *dispose)
24cbe784 755{
e084c1bd 756 locks_unlink_lock_ctx(fl);
ed9814d8 757 if (dispose)
6dee60f6 758 list_add(&fl->fl_list, dispose);
ed9814d8
JL
759 else
760 locks_free_lock(fl);
1da177e4
LT
761}
762
763/* Determine if lock sys_fl blocks lock caller_fl. Common functionality
764 * checks for shared/exclusive status of overlapping locks.
765 */
766static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
767{
768 if (sys_fl->fl_type == F_WRLCK)
769 return 1;
770 if (caller_fl->fl_type == F_WRLCK)
771 return 1;
772 return 0;
773}
774
775/* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
776 * checking before calling the locks_conflict().
777 */
778static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
779{
780 /* POSIX locks owned by the same process do not conflict with
781 * each other.
782 */
9b8c8695 783 if (posix_same_owner(caller_fl, sys_fl))
1da177e4
LT
784 return (0);
785
786 /* Check whether they overlap */
787 if (!locks_overlap(caller_fl, sys_fl))
788 return 0;
789
790 return (locks_conflict(caller_fl, sys_fl));
791}
792
793/* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
794 * checking before calling the locks_conflict().
795 */
796static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
797{
798 /* FLOCK locks referring to the same filp do not conflict with
799 * each other.
800 */
9b8c8695 801 if (caller_fl->fl_file == sys_fl->fl_file)
1da177e4
LT
802 return (0);
803 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
804 return 0;
805
806 return (locks_conflict(caller_fl, sys_fl));
807}
808
6d34ac19 809void
9d6a8c5c 810posix_test_lock(struct file *filp, struct file_lock *fl)
1da177e4
LT
811{
812 struct file_lock *cfl;
bd61e0a9 813 struct file_lock_context *ctx;
c568d683 814 struct inode *inode = locks_inode(filp);
1da177e4 815
128a3785 816 ctx = smp_load_acquire(&inode->i_flctx);
bd61e0a9
JL
817 if (!ctx || list_empty_careful(&ctx->flc_posix)) {
818 fl->fl_type = F_UNLCK;
819 return;
820 }
821
6109c850 822 spin_lock(&ctx->flc_lock);
bd61e0a9
JL
823 list_for_each_entry(cfl, &ctx->flc_posix, fl_list) {
824 if (posix_locks_conflict(fl, cfl)) {
825 locks_copy_conflock(fl, cfl);
826 if (cfl->fl_nspid)
827 fl->fl_pid = pid_vnr(cfl->fl_nspid);
828 goto out;
829 }
1da177e4 830 }
bd61e0a9
JL
831 fl->fl_type = F_UNLCK;
832out:
6109c850 833 spin_unlock(&ctx->flc_lock);
6d34ac19 834 return;
1da177e4 835}
1da177e4
LT
836EXPORT_SYMBOL(posix_test_lock);
837
b533184f
BF
838/*
839 * Deadlock detection:
840 *
841 * We attempt to detect deadlocks that are due purely to posix file
842 * locks.
1da177e4 843 *
b533184f
BF
844 * We assume that a task can be waiting for at most one lock at a time.
845 * So for any acquired lock, the process holding that lock may be
846 * waiting on at most one other lock. That lock in turns may be held by
847 * someone waiting for at most one other lock. Given a requested lock
848 * caller_fl which is about to wait for a conflicting lock block_fl, we
849 * follow this chain of waiters to ensure we are not about to create a
850 * cycle.
1da177e4 851 *
b533184f
BF
852 * Since we do this before we ever put a process to sleep on a lock, we
853 * are ensured that there is never a cycle; that is what guarantees that
854 * the while() loop in posix_locks_deadlock() eventually completes.
97855b49 855 *
b533184f
BF
856 * Note: the above assumption may not be true when handling lock
857 * requests from a broken NFS client. It may also fail in the presence
858 * of tasks (such as posix threads) sharing the same open file table.
b533184f 859 * To handle those cases, we just bail out after a few iterations.
57b65325 860 *
cff2fce5 861 * For FL_OFDLCK locks, the owner is the filp, not the files_struct.
57b65325
JL
862 * Because the owner is not even nominally tied to a thread of
863 * execution, the deadlock detection below can't reasonably work well. Just
864 * skip it for those.
865 *
cff2fce5 866 * In principle, we could do a more limited deadlock detection on FL_OFDLCK
57b65325
JL
867 * locks that just checks for the case where two tasks are attempting to
868 * upgrade from read to write locks on the same inode.
1da177e4 869 */
97855b49
BF
870
871#define MAX_DEADLK_ITERATIONS 10
872
b533184f
BF
873/* Find a lock that the owner of the given block_fl is blocking on. */
874static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
875{
876 struct file_lock *fl;
877
3999e493 878 hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
b533184f
BF
879 if (posix_same_owner(fl, block_fl))
880 return fl->fl_next;
881 }
882 return NULL;
883}
884
7b2296af 885/* Must be called with the blocked_lock_lock held! */
b0904e14 886static int posix_locks_deadlock(struct file_lock *caller_fl,
1da177e4
LT
887 struct file_lock *block_fl)
888{
97855b49 889 int i = 0;
1da177e4 890
663d5af7
DW
891 lockdep_assert_held(&blocked_lock_lock);
892
57b65325
JL
893 /*
894 * This deadlock detector can't reasonably detect deadlocks with
cff2fce5 895 * FL_OFDLCK locks, since they aren't owned by a process, per-se.
57b65325 896 */
cff2fce5 897 if (IS_OFDLCK(caller_fl))
57b65325
JL
898 return 0;
899
b533184f
BF
900 while ((block_fl = what_owner_is_waiting_for(block_fl))) {
901 if (i++ > MAX_DEADLK_ITERATIONS)
902 return 0;
903 if (posix_same_owner(caller_fl, block_fl))
904 return 1;
1da177e4
LT
905 }
906 return 0;
907}
908
1da177e4 909/* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
02888f41 910 * after any leases, but before any posix locks.
f475ae95
TM
911 *
912 * Note that if called with an FL_EXISTS argument, the caller may determine
913 * whether or not a lock was successfully freed by testing the return
914 * value for -ENOENT.
1da177e4 915 */
bcd7f78d 916static int flock_lock_inode(struct inode *inode, struct file_lock *request)
1da177e4 917{
993dfa87 918 struct file_lock *new_fl = NULL;
5263e31e
JL
919 struct file_lock *fl;
920 struct file_lock_context *ctx;
1da177e4 921 int error = 0;
5263e31e 922 bool found = false;
ed9814d8 923 LIST_HEAD(dispose);
1da177e4 924
5c1c669a
JL
925 ctx = locks_get_lock_context(inode, request->fl_type);
926 if (!ctx) {
927 if (request->fl_type != F_UNLCK)
928 return -ENOMEM;
929 return (request->fl_flags & FL_EXISTS) ? -ENOENT : 0;
930 }
5263e31e 931
b89f4321 932 if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
84d535ad 933 new_fl = locks_alloc_lock();
b89f4321
AB
934 if (!new_fl)
935 return -ENOMEM;
84d535ad
PE
936 }
937
87709e28 938 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 939 spin_lock(&ctx->flc_lock);
b89f4321
AB
940 if (request->fl_flags & FL_ACCESS)
941 goto find_conflict;
942
5263e31e 943 list_for_each_entry(fl, &ctx->flc_flock, fl_list) {
bcd7f78d 944 if (request->fl_file != fl->fl_file)
1da177e4 945 continue;
993dfa87 946 if (request->fl_type == fl->fl_type)
1da177e4 947 goto out;
5263e31e 948 found = true;
e084c1bd 949 locks_delete_lock_ctx(fl, &dispose);
1da177e4
LT
950 break;
951 }
1da177e4 952
f475ae95
TM
953 if (request->fl_type == F_UNLCK) {
954 if ((request->fl_flags & FL_EXISTS) && !found)
955 error = -ENOENT;
993dfa87 956 goto out;
f475ae95 957 }
1da177e4 958
f07f18dd 959find_conflict:
5263e31e 960 list_for_each_entry(fl, &ctx->flc_flock, fl_list) {
993dfa87 961 if (!flock_locks_conflict(request, fl))
1da177e4
LT
962 continue;
963 error = -EAGAIN;
bde74e4b
MS
964 if (!(request->fl_flags & FL_SLEEP))
965 goto out;
966 error = FILE_LOCK_DEFERRED;
967 locks_insert_block(fl, request);
1da177e4
LT
968 goto out;
969 }
f07f18dd
TM
970 if (request->fl_flags & FL_ACCESS)
971 goto out;
993dfa87 972 locks_copy_lock(new_fl, request);
e084c1bd 973 locks_insert_lock_ctx(new_fl, &ctx->flc_flock);
993dfa87 974 new_fl = NULL;
9cedc194 975 error = 0;
1da177e4
LT
976
977out:
6109c850 978 spin_unlock(&ctx->flc_lock);
87709e28 979 percpu_up_read_preempt_enable(&file_rwsem);
993dfa87
TM
980 if (new_fl)
981 locks_free_lock(new_fl);
ed9814d8 982 locks_dispose_list(&dispose);
1da177e4
LT
983 return error;
984}
985
b4d629a3
JL
986static int posix_lock_inode(struct inode *inode, struct file_lock *request,
987 struct file_lock *conflock)
1da177e4 988{
bd61e0a9 989 struct file_lock *fl, *tmp;
39005d02
MS
990 struct file_lock *new_fl = NULL;
991 struct file_lock *new_fl2 = NULL;
1da177e4
LT
992 struct file_lock *left = NULL;
993 struct file_lock *right = NULL;
bd61e0a9 994 struct file_lock_context *ctx;
b9746ef8
JL
995 int error;
996 bool added = false;
ed9814d8 997 LIST_HEAD(dispose);
1da177e4 998
5c1c669a 999 ctx = locks_get_lock_context(inode, request->fl_type);
bd61e0a9 1000 if (!ctx)
5c1c669a 1001 return (request->fl_type == F_UNLCK) ? 0 : -ENOMEM;
bd61e0a9 1002
1da177e4
LT
1003 /*
1004 * We may need two file_lock structures for this operation,
1005 * so we get them in advance to avoid races.
39005d02
MS
1006 *
1007 * In some cases we can be sure, that no new locks will be needed
1da177e4 1008 */
39005d02
MS
1009 if (!(request->fl_flags & FL_ACCESS) &&
1010 (request->fl_type != F_UNLCK ||
1011 request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
1012 new_fl = locks_alloc_lock();
1013 new_fl2 = locks_alloc_lock();
1014 }
1da177e4 1015
87709e28 1016 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 1017 spin_lock(&ctx->flc_lock);
1cb36012
JL
1018 /*
1019 * New lock request. Walk all POSIX locks and look for conflicts. If
1020 * there are any, either return error or put the request on the
48f74186 1021 * blocker's list of waiters and the global blocked_hash.
1cb36012 1022 */
1da177e4 1023 if (request->fl_type != F_UNLCK) {
bd61e0a9 1024 list_for_each_entry(fl, &ctx->flc_posix, fl_list) {
1da177e4
LT
1025 if (!posix_locks_conflict(request, fl))
1026 continue;
5842add2 1027 if (conflock)
3fe0fff1 1028 locks_copy_conflock(conflock, fl);
1da177e4
LT
1029 error = -EAGAIN;
1030 if (!(request->fl_flags & FL_SLEEP))
1031 goto out;
1c8c601a
JL
1032 /*
1033 * Deadlock detection and insertion into the blocked
1034 * locks list must be done while holding the same lock!
1035 */
1da177e4 1036 error = -EDEADLK;
7b2296af 1037 spin_lock(&blocked_lock_lock);
1c8c601a
JL
1038 if (likely(!posix_locks_deadlock(request, fl))) {
1039 error = FILE_LOCK_DEFERRED;
1040 __locks_insert_block(fl, request);
1041 }
7b2296af 1042 spin_unlock(&blocked_lock_lock);
1da177e4
LT
1043 goto out;
1044 }
1045 }
1046
1047 /* If we're just looking for a conflict, we're done. */
1048 error = 0;
1049 if (request->fl_flags & FL_ACCESS)
1050 goto out;
1051
bd61e0a9
JL
1052 /* Find the first old lock with the same owner as the new lock */
1053 list_for_each_entry(fl, &ctx->flc_posix, fl_list) {
1054 if (posix_same_owner(request, fl))
1055 break;
1da177e4
LT
1056 }
1057
1cb36012 1058 /* Process locks with this owner. */
bd61e0a9
JL
1059 list_for_each_entry_safe_from(fl, tmp, &ctx->flc_posix, fl_list) {
1060 if (!posix_same_owner(request, fl))
1061 break;
1062
1063 /* Detect adjacent or overlapping regions (if same lock type) */
1da177e4 1064 if (request->fl_type == fl->fl_type) {
449231d6
OK
1065 /* In all comparisons of start vs end, use
1066 * "start - 1" rather than "end + 1". If end
1067 * is OFFSET_MAX, end + 1 will become negative.
1068 */
1da177e4 1069 if (fl->fl_end < request->fl_start - 1)
bd61e0a9 1070 continue;
1da177e4
LT
1071 /* If the next lock in the list has entirely bigger
1072 * addresses than the new one, insert the lock here.
1073 */
449231d6 1074 if (fl->fl_start - 1 > request->fl_end)
1da177e4
LT
1075 break;
1076
1077 /* If we come here, the new and old lock are of the
1078 * same type and adjacent or overlapping. Make one
1079 * lock yielding from the lower start address of both
1080 * locks to the higher end address.
1081 */
1082 if (fl->fl_start > request->fl_start)
1083 fl->fl_start = request->fl_start;
1084 else
1085 request->fl_start = fl->fl_start;
1086 if (fl->fl_end < request->fl_end)
1087 fl->fl_end = request->fl_end;
1088 else
1089 request->fl_end = fl->fl_end;
1090 if (added) {
e084c1bd 1091 locks_delete_lock_ctx(fl, &dispose);
1da177e4
LT
1092 continue;
1093 }
1094 request = fl;
b9746ef8 1095 added = true;
bd61e0a9 1096 } else {
1da177e4
LT
1097 /* Processing for different lock types is a bit
1098 * more complex.
1099 */
1100 if (fl->fl_end < request->fl_start)
bd61e0a9 1101 continue;
1da177e4
LT
1102 if (fl->fl_start > request->fl_end)
1103 break;
1104 if (request->fl_type == F_UNLCK)
b9746ef8 1105 added = true;
1da177e4
LT
1106 if (fl->fl_start < request->fl_start)
1107 left = fl;
1108 /* If the next lock in the list has a higher end
1109 * address than the new one, insert the new one here.
1110 */
1111 if (fl->fl_end > request->fl_end) {
1112 right = fl;
1113 break;
1114 }
1115 if (fl->fl_start >= request->fl_start) {
1116 /* The new lock completely replaces an old
1117 * one (This may happen several times).
1118 */
1119 if (added) {
e084c1bd 1120 locks_delete_lock_ctx(fl, &dispose);
1da177e4
LT
1121 continue;
1122 }
b84d49f9
JL
1123 /*
1124 * Replace the old lock with new_fl, and
1125 * remove the old one. It's safe to do the
1126 * insert here since we know that we won't be
1127 * using new_fl later, and that the lock is
1128 * just replacing an existing lock.
1da177e4 1129 */
b84d49f9
JL
1130 error = -ENOLCK;
1131 if (!new_fl)
1132 goto out;
1133 locks_copy_lock(new_fl, request);
1134 request = new_fl;
1135 new_fl = NULL;
e084c1bd
JL
1136 locks_insert_lock_ctx(request, &fl->fl_list);
1137 locks_delete_lock_ctx(fl, &dispose);
b9746ef8 1138 added = true;
1da177e4
LT
1139 }
1140 }
1da177e4
LT
1141 }
1142
0d9a490a 1143 /*
1cb36012
JL
1144 * The above code only modifies existing locks in case of merging or
1145 * replacing. If new lock(s) need to be inserted all modifications are
1146 * done below this, so it's safe yet to bail out.
0d9a490a
MS
1147 */
1148 error = -ENOLCK; /* "no luck" */
1149 if (right && left == right && !new_fl2)
1150 goto out;
1151
1da177e4
LT
1152 error = 0;
1153 if (!added) {
f475ae95
TM
1154 if (request->fl_type == F_UNLCK) {
1155 if (request->fl_flags & FL_EXISTS)
1156 error = -ENOENT;
1da177e4 1157 goto out;
f475ae95 1158 }
0d9a490a
MS
1159
1160 if (!new_fl) {
1161 error = -ENOLCK;
1162 goto out;
1163 }
1da177e4 1164 locks_copy_lock(new_fl, request);
e084c1bd 1165 locks_insert_lock_ctx(new_fl, &fl->fl_list);
2e2f756f 1166 fl = new_fl;
1da177e4
LT
1167 new_fl = NULL;
1168 }
1169 if (right) {
1170 if (left == right) {
1171 /* The new lock breaks the old one in two pieces,
1172 * so we have to use the second new lock.
1173 */
1174 left = new_fl2;
1175 new_fl2 = NULL;
1176 locks_copy_lock(left, right);
e084c1bd 1177 locks_insert_lock_ctx(left, &fl->fl_list);
1da177e4
LT
1178 }
1179 right->fl_start = request->fl_end + 1;
1180 locks_wake_up_blocks(right);
1181 }
1182 if (left) {
1183 left->fl_end = request->fl_start - 1;
1184 locks_wake_up_blocks(left);
1185 }
1186 out:
6109c850 1187 spin_unlock(&ctx->flc_lock);
87709e28 1188 percpu_up_read_preempt_enable(&file_rwsem);
1da177e4
LT
1189 /*
1190 * Free any unused locks.
1191 */
1192 if (new_fl)
1193 locks_free_lock(new_fl);
1194 if (new_fl2)
1195 locks_free_lock(new_fl2);
ed9814d8 1196 locks_dispose_list(&dispose);
1890910f
JL
1197 trace_posix_lock_inode(inode, request, error);
1198
1da177e4
LT
1199 return error;
1200}
1201
1202/**
1203 * posix_lock_file - Apply a POSIX-style lock to a file
1204 * @filp: The file to apply the lock to
1205 * @fl: The lock to be applied
150b3934 1206 * @conflock: Place to return a copy of the conflicting lock, if found.
1da177e4
LT
1207 *
1208 * Add a POSIX style lock to a file.
1209 * We merge adjacent & overlapping locks whenever possible.
1210 * POSIX locks are sorted by owner task, then by starting address
f475ae95
TM
1211 *
1212 * Note that if called with an FL_EXISTS argument, the caller may determine
1213 * whether or not a lock was successfully freed by testing the return
1214 * value for -ENOENT.
1da177e4 1215 */
150b3934 1216int posix_lock_file(struct file *filp, struct file_lock *fl,
5842add2
AA
1217 struct file_lock *conflock)
1218{
c568d683 1219 return posix_lock_inode(locks_inode(filp), fl, conflock);
1da177e4 1220}
150b3934 1221EXPORT_SYMBOL(posix_lock_file);
1da177e4
LT
1222
1223/**
29d01b22
JL
1224 * posix_lock_inode_wait - Apply a POSIX-style lock to a file
1225 * @inode: inode of file to which lock request should be applied
1da177e4
LT
1226 * @fl: The lock to be applied
1227 *
616fb38f 1228 * Apply a POSIX style lock request to an inode.
1da177e4 1229 */
616fb38f 1230static int posix_lock_inode_wait(struct inode *inode, struct file_lock *fl)
1da177e4
LT
1231{
1232 int error;
1233 might_sleep ();
1234 for (;;) {
b4d629a3 1235 error = posix_lock_inode(inode, fl, NULL);
bde74e4b 1236 if (error != FILE_LOCK_DEFERRED)
1da177e4
LT
1237 break;
1238 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1239 if (!error)
1240 continue;
1241
1242 locks_delete_block(fl);
1243 break;
1244 }
1245 return error;
1246}
29d01b22 1247
9e8925b6 1248#ifdef CONFIG_MANDATORY_FILE_LOCKING
1da177e4
LT
1249/**
1250 * locks_mandatory_locked - Check for an active lock
d7a06983 1251 * @file: the file to check
1da177e4
LT
1252 *
1253 * Searches the inode's list of locks to find any POSIX locks which conflict.
1254 * This function is called from locks_verify_locked() only.
1255 */
d7a06983 1256int locks_mandatory_locked(struct file *file)
1da177e4 1257{
bd61e0a9 1258 int ret;
c568d683 1259 struct inode *inode = locks_inode(file);
bd61e0a9 1260 struct file_lock_context *ctx;
1da177e4
LT
1261 struct file_lock *fl;
1262
128a3785 1263 ctx = smp_load_acquire(&inode->i_flctx);
bd61e0a9
JL
1264 if (!ctx || list_empty_careful(&ctx->flc_posix))
1265 return 0;
1266
1da177e4
LT
1267 /*
1268 * Search the lock list for this inode for any POSIX locks.
1269 */
6109c850 1270 spin_lock(&ctx->flc_lock);
bd61e0a9
JL
1271 ret = 0;
1272 list_for_each_entry(fl, &ctx->flc_posix, fl_list) {
73a8f5f7 1273 if (fl->fl_owner != current->files &&
bd61e0a9
JL
1274 fl->fl_owner != file) {
1275 ret = -EAGAIN;
1da177e4 1276 break;
bd61e0a9 1277 }
1da177e4 1278 }
6109c850 1279 spin_unlock(&ctx->flc_lock);
bd61e0a9 1280 return ret;
1da177e4
LT
1281}
1282
1283/**
1284 * locks_mandatory_area - Check for a conflicting lock
acc15575 1285 * @inode: the file to check
1da177e4 1286 * @filp: how the file was opened (if it was)
acc15575
CH
1287 * @start: first byte in the file to check
1288 * @end: lastbyte in the file to check
1289 * @type: %F_WRLCK for a write lock, else %F_RDLCK
1da177e4
LT
1290 *
1291 * Searches the inode's list of locks to find any POSIX locks which conflict.
1da177e4 1292 */
acc15575
CH
1293int locks_mandatory_area(struct inode *inode, struct file *filp, loff_t start,
1294 loff_t end, unsigned char type)
1da177e4
LT
1295{
1296 struct file_lock fl;
1297 int error;
29723ade 1298 bool sleep = false;
1da177e4
LT
1299
1300 locks_init_lock(&fl);
1da177e4
LT
1301 fl.fl_pid = current->tgid;
1302 fl.fl_file = filp;
1303 fl.fl_flags = FL_POSIX | FL_ACCESS;
1304 if (filp && !(filp->f_flags & O_NONBLOCK))
29723ade 1305 sleep = true;
acc15575
CH
1306 fl.fl_type = type;
1307 fl.fl_start = start;
1308 fl.fl_end = end;
1da177e4
LT
1309
1310 for (;;) {
29723ade 1311 if (filp) {
73a8f5f7 1312 fl.fl_owner = filp;
29723ade 1313 fl.fl_flags &= ~FL_SLEEP;
b4d629a3 1314 error = posix_lock_inode(inode, &fl, NULL);
29723ade
JL
1315 if (!error)
1316 break;
1317 }
1318
1319 if (sleep)
1320 fl.fl_flags |= FL_SLEEP;
1321 fl.fl_owner = current->files;
b4d629a3 1322 error = posix_lock_inode(inode, &fl, NULL);
bde74e4b 1323 if (error != FILE_LOCK_DEFERRED)
1da177e4
LT
1324 break;
1325 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1326 if (!error) {
1327 /*
1328 * If we've been sleeping someone might have
1329 * changed the permissions behind our back.
1330 */
a16877ca 1331 if (__mandatory_lock(inode))
1da177e4
LT
1332 continue;
1333 }
1334
1335 locks_delete_block(&fl);
1336 break;
1337 }
1338
1339 return error;
1340}
1341
1342EXPORT_SYMBOL(locks_mandatory_area);
9e8925b6 1343#endif /* CONFIG_MANDATORY_FILE_LOCKING */
1da177e4 1344
778fc546
BF
1345static void lease_clear_pending(struct file_lock *fl, int arg)
1346{
1347 switch (arg) {
1348 case F_UNLCK:
1349 fl->fl_flags &= ~FL_UNLOCK_PENDING;
1350 /* fall through: */
1351 case F_RDLCK:
1352 fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1353 }
1354}
1355
1da177e4 1356/* We already had a lease on this file; just change its type */
7448cc37 1357int lease_modify(struct file_lock *fl, int arg, struct list_head *dispose)
1da177e4 1358{
1da177e4
LT
1359 int error = assign_type(fl, arg);
1360
1361 if (error)
1362 return error;
778fc546 1363 lease_clear_pending(fl, arg);
1da177e4 1364 locks_wake_up_blocks(fl);
3b6e2723
FB
1365 if (arg == F_UNLCK) {
1366 struct file *filp = fl->fl_file;
1367
1368 f_delown(filp);
1369 filp->f_owner.signum = 0;
96d6d59c
BF
1370 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
1371 if (fl->fl_fasync != NULL) {
1372 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
1373 fl->fl_fasync = NULL;
1374 }
e084c1bd 1375 locks_delete_lock_ctx(fl, dispose);
3b6e2723 1376 }
1da177e4
LT
1377 return 0;
1378}
1da177e4
LT
1379EXPORT_SYMBOL(lease_modify);
1380
778fc546
BF
1381static bool past_time(unsigned long then)
1382{
1383 if (!then)
1384 /* 0 is a special value meaning "this never expires": */
1385 return false;
1386 return time_after(jiffies, then);
1387}
1388
c45198ed 1389static void time_out_leases(struct inode *inode, struct list_head *dispose)
1da177e4 1390{
8634b51f
JL
1391 struct file_lock_context *ctx = inode->i_flctx;
1392 struct file_lock *fl, *tmp;
1da177e4 1393
6109c850 1394 lockdep_assert_held(&ctx->flc_lock);
f82b4b67 1395
8634b51f 1396 list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list) {
62af4f1f 1397 trace_time_out_leases(inode, fl);
778fc546 1398 if (past_time(fl->fl_downgrade_time))
7448cc37 1399 lease_modify(fl, F_RDLCK, dispose);
778fc546 1400 if (past_time(fl->fl_break_time))
7448cc37 1401 lease_modify(fl, F_UNLCK, dispose);
1da177e4
LT
1402 }
1403}
1404
df4e8d2c
BF
1405static bool leases_conflict(struct file_lock *lease, struct file_lock *breaker)
1406{
11afe9f7
CH
1407 if ((breaker->fl_flags & FL_LAYOUT) != (lease->fl_flags & FL_LAYOUT))
1408 return false;
df4e8d2c
BF
1409 if ((breaker->fl_flags & FL_DELEG) && (lease->fl_flags & FL_LEASE))
1410 return false;
1411 return locks_conflict(breaker, lease);
1412}
1413
03d12ddf
JL
1414static bool
1415any_leases_conflict(struct inode *inode, struct file_lock *breaker)
1416{
8634b51f 1417 struct file_lock_context *ctx = inode->i_flctx;
03d12ddf
JL
1418 struct file_lock *fl;
1419
6109c850 1420 lockdep_assert_held(&ctx->flc_lock);
03d12ddf 1421
8634b51f 1422 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
03d12ddf
JL
1423 if (leases_conflict(fl, breaker))
1424 return true;
1425 }
1426 return false;
1427}
1428
1da177e4
LT
1429/**
1430 * __break_lease - revoke all outstanding leases on file
1431 * @inode: the inode of the file to return
df4e8d2c
BF
1432 * @mode: O_RDONLY: break only write leases; O_WRONLY or O_RDWR:
1433 * break all leases
1434 * @type: FL_LEASE: break leases and delegations; FL_DELEG: break
1435 * only delegations
1da177e4 1436 *
87250dd2 1437 * break_lease (inlined for speed) has checked there already is at least
1438 * some kind of lock (maybe a lease) on this file. Leases are broken on
1439 * a call to open() or truncate(). This function can sleep unless you
1da177e4
LT
1440 * specified %O_NONBLOCK to your open().
1441 */
df4e8d2c 1442int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
1da177e4 1443{
778fc546 1444 int error = 0;
128a3785 1445 struct file_lock_context *ctx;
a901125c 1446 struct file_lock *new_fl, *fl, *tmp;
1da177e4 1447 unsigned long break_time;
8737c930 1448 int want_write = (mode & O_ACCMODE) != O_RDONLY;
c45198ed 1449 LIST_HEAD(dispose);
1da177e4 1450
8737c930 1451 new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
6d4b9e38
LT
1452 if (IS_ERR(new_fl))
1453 return PTR_ERR(new_fl);
df4e8d2c 1454 new_fl->fl_flags = type;
1da177e4 1455
8634b51f 1456 /* typically we will check that ctx is non-NULL before calling */
128a3785 1457 ctx = smp_load_acquire(&inode->i_flctx);
8634b51f
JL
1458 if (!ctx) {
1459 WARN_ON_ONCE(1);
1460 return error;
1461 }
1462
87709e28 1463 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 1464 spin_lock(&ctx->flc_lock);
1da177e4 1465
c45198ed 1466 time_out_leases(inode, &dispose);
1da177e4 1467
03d12ddf 1468 if (!any_leases_conflict(inode, new_fl))
778fc546
BF
1469 goto out;
1470
1da177e4
LT
1471 break_time = 0;
1472 if (lease_break_time > 0) {
1473 break_time = jiffies + lease_break_time * HZ;
1474 if (break_time == 0)
1475 break_time++; /* so that 0 means no break time */
1476 }
1477
a901125c 1478 list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list) {
df4e8d2c
BF
1479 if (!leases_conflict(fl, new_fl))
1480 continue;
778fc546
BF
1481 if (want_write) {
1482 if (fl->fl_flags & FL_UNLOCK_PENDING)
1483 continue;
1484 fl->fl_flags |= FL_UNLOCK_PENDING;
1da177e4 1485 fl->fl_break_time = break_time;
778fc546 1486 } else {
8634b51f 1487 if (lease_breaking(fl))
778fc546
BF
1488 continue;
1489 fl->fl_flags |= FL_DOWNGRADE_PENDING;
1490 fl->fl_downgrade_time = break_time;
1da177e4 1491 }
4d01b7f5 1492 if (fl->fl_lmops->lm_break(fl))
e084c1bd 1493 locks_delete_lock_ctx(fl, &dispose);
1da177e4
LT
1494 }
1495
8634b51f 1496 if (list_empty(&ctx->flc_lease))
4d01b7f5
JL
1497 goto out;
1498
843c6b2f 1499 if (mode & O_NONBLOCK) {
62af4f1f 1500 trace_break_lease_noblock(inode, new_fl);
1da177e4
LT
1501 error = -EWOULDBLOCK;
1502 goto out;
1503 }
1504
1505restart:
8634b51f
JL
1506 fl = list_first_entry(&ctx->flc_lease, struct file_lock, fl_list);
1507 break_time = fl->fl_break_time;
f1c6bb2c 1508 if (break_time != 0)
1da177e4 1509 break_time -= jiffies;
f1c6bb2c
JL
1510 if (break_time == 0)
1511 break_time++;
8634b51f 1512 locks_insert_block(fl, new_fl);
62af4f1f 1513 trace_break_lease_block(inode, new_fl);
6109c850 1514 spin_unlock(&ctx->flc_lock);
87709e28 1515 percpu_up_read_preempt_enable(&file_rwsem);
aba37660 1516
c45198ed 1517 locks_dispose_list(&dispose);
4321e01e
MW
1518 error = wait_event_interruptible_timeout(new_fl->fl_wait,
1519 !new_fl->fl_next, break_time);
aba37660 1520
87709e28 1521 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 1522 spin_lock(&ctx->flc_lock);
62af4f1f 1523 trace_break_lease_unblock(inode, new_fl);
1c8c601a 1524 locks_delete_block(new_fl);
1da177e4 1525 if (error >= 0) {
778fc546
BF
1526 /*
1527 * Wait for the next conflicting lease that has not been
1528 * broken yet
1529 */
03d12ddf
JL
1530 if (error == 0)
1531 time_out_leases(inode, &dispose);
1532 if (any_leases_conflict(inode, new_fl))
1533 goto restart;
1da177e4
LT
1534 error = 0;
1535 }
1da177e4 1536out:
6109c850 1537 spin_unlock(&ctx->flc_lock);
87709e28 1538 percpu_up_read_preempt_enable(&file_rwsem);
c45198ed 1539 locks_dispose_list(&dispose);
6d4b9e38 1540 locks_free_lock(new_fl);
1da177e4
LT
1541 return error;
1542}
1543
1544EXPORT_SYMBOL(__break_lease);
1545
1546/**
a6b91919 1547 * lease_get_mtime - get the last modified time of an inode
1da177e4
LT
1548 * @inode: the inode
1549 * @time: pointer to a timespec which will contain the last modified time
1550 *
1551 * This is to force NFS clients to flush their caches for files with
1552 * exclusive leases. The justification is that if someone has an
a6b91919 1553 * exclusive lease, then they could be modifying it.
1da177e4
LT
1554 */
1555void lease_get_mtime(struct inode *inode, struct timespec *time)
1556{
bfe86024 1557 bool has_lease = false;
128a3785 1558 struct file_lock_context *ctx;
8634b51f 1559 struct file_lock *fl;
bfe86024 1560
128a3785 1561 ctx = smp_load_acquire(&inode->i_flctx);
8634b51f 1562 if (ctx && !list_empty_careful(&ctx->flc_lease)) {
6109c850 1563 spin_lock(&ctx->flc_lock);
8ace5dfb
GT
1564 fl = list_first_entry_or_null(&ctx->flc_lease,
1565 struct file_lock, fl_list);
1566 if (fl && (fl->fl_type == F_WRLCK))
1567 has_lease = true;
6109c850 1568 spin_unlock(&ctx->flc_lock);
bfe86024
JL
1569 }
1570
1571 if (has_lease)
c2050a45 1572 *time = current_time(inode);
1da177e4
LT
1573 else
1574 *time = inode->i_mtime;
1575}
1576
1577EXPORT_SYMBOL(lease_get_mtime);
1578
1579/**
1580 * fcntl_getlease - Enquire what lease is currently active
1581 * @filp: the file
1582 *
1583 * The value returned by this function will be one of
1584 * (if no lease break is pending):
1585 *
1586 * %F_RDLCK to indicate a shared lease is held.
1587 *
1588 * %F_WRLCK to indicate an exclusive lease is held.
1589 *
1590 * %F_UNLCK to indicate no lease is held.
1591 *
1592 * (if a lease break is pending):
1593 *
1594 * %F_RDLCK to indicate an exclusive lease needs to be
1595 * changed to a shared lease (or removed).
1596 *
1597 * %F_UNLCK to indicate the lease needs to be removed.
1598 *
1599 * XXX: sfr & willy disagree over whether F_INPROGRESS
1600 * should be returned to userspace.
1601 */
1602int fcntl_getlease(struct file *filp)
1603{
1604 struct file_lock *fl;
c568d683 1605 struct inode *inode = locks_inode(filp);
128a3785 1606 struct file_lock_context *ctx;
1da177e4 1607 int type = F_UNLCK;
c45198ed 1608 LIST_HEAD(dispose);
1da177e4 1609
128a3785 1610 ctx = smp_load_acquire(&inode->i_flctx);
8634b51f 1611 if (ctx && !list_empty_careful(&ctx->flc_lease)) {
5f43086b 1612 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 1613 spin_lock(&ctx->flc_lock);
c568d683 1614 time_out_leases(inode, &dispose);
8634b51f
JL
1615 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
1616 if (fl->fl_file != filp)
1617 continue;
778fc546 1618 type = target_leasetype(fl);
1da177e4
LT
1619 break;
1620 }
6109c850 1621 spin_unlock(&ctx->flc_lock);
5f43086b
PZ
1622 percpu_up_read_preempt_enable(&file_rwsem);
1623
8634b51f 1624 locks_dispose_list(&dispose);
1da177e4 1625 }
1da177e4
LT
1626 return type;
1627}
1628
24cbe784
JL
1629/**
1630 * check_conflicting_open - see if the given dentry points to a file that has
1631 * an existing open that would conflict with the
1632 * desired lease.
1633 * @dentry: dentry to check
1634 * @arg: type of lease that we're trying to acquire
7fadc59c 1635 * @flags: current lock flags
24cbe784
JL
1636 *
1637 * Check to see if there's an existing open fd on this file that would
1638 * conflict with the lease we're trying to set.
1639 */
1640static int
11afe9f7 1641check_conflicting_open(const struct dentry *dentry, const long arg, int flags)
24cbe784
JL
1642{
1643 int ret = 0;
1644 struct inode *inode = dentry->d_inode;
1645
11afe9f7
CH
1646 if (flags & FL_LAYOUT)
1647 return 0;
1648
4d0c5ba2
MS
1649 if ((arg == F_RDLCK) &&
1650 (atomic_read(&d_real_inode(dentry)->i_writecount) > 0))
24cbe784
JL
1651 return -EAGAIN;
1652
1653 if ((arg == F_WRLCK) && ((d_count(dentry) > 1) ||
1654 (atomic_read(&inode->i_count) > 1)))
1655 ret = -EAGAIN;
1656
1657 return ret;
1658}
1659
e6f5c789
JL
1660static int
1661generic_add_lease(struct file *filp, long arg, struct file_lock **flp, void **priv)
1da177e4 1662{
8634b51f 1663 struct file_lock *fl, *my_fl = NULL, *lease;
0f7fc9e4 1664 struct dentry *dentry = filp->f_path.dentry;
c568d683 1665 struct inode *inode = dentry->d_inode;
8634b51f 1666 struct file_lock_context *ctx;
df4e8d2c 1667 bool is_deleg = (*flp)->fl_flags & FL_DELEG;
c1f24ef4 1668 int error;
c45198ed 1669 LIST_HEAD(dispose);
1da177e4 1670
096657b6 1671 lease = *flp;
62af4f1f
JL
1672 trace_generic_add_lease(inode, lease);
1673
5c1c669a
JL
1674 /* Note that arg is never F_UNLCK here */
1675 ctx = locks_get_lock_context(inode, arg);
8634b51f
JL
1676 if (!ctx)
1677 return -ENOMEM;
1678
df4e8d2c
BF
1679 /*
1680 * In the delegation case we need mutual exclusion with
1681 * a number of operations that take the i_mutex. We trylock
1682 * because delegations are an optional optimization, and if
1683 * there's some chance of a conflict--we'd rather not
1684 * bother, maybe that's a sign this just isn't a good file to
1685 * hand out a delegation on.
1686 */
5955102c 1687 if (is_deleg && !inode_trylock(inode))
df4e8d2c
BF
1688 return -EAGAIN;
1689
1690 if (is_deleg && arg == F_WRLCK) {
1691 /* Write delegations are not currently supported: */
5955102c 1692 inode_unlock(inode);
df4e8d2c
BF
1693 WARN_ON_ONCE(1);
1694 return -EINVAL;
1695 }
096657b6 1696
87709e28 1697 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 1698 spin_lock(&ctx->flc_lock);
c45198ed 1699 time_out_leases(inode, &dispose);
11afe9f7 1700 error = check_conflicting_open(dentry, arg, lease->fl_flags);
24cbe784 1701 if (error)
096657b6 1702 goto out;
6d5e8b05 1703
1da177e4
LT
1704 /*
1705 * At this point, we know that if there is an exclusive
1706 * lease on this file, then we hold it on this filp
1707 * (otherwise our open of this file would have blocked).
1708 * And if we are trying to acquire an exclusive lease,
1709 * then the file is not open by anyone (including us)
1710 * except for this filp.
1711 */
c1f24ef4 1712 error = -EAGAIN;
8634b51f 1713 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
2ab99ee1
CH
1714 if (fl->fl_file == filp &&
1715 fl->fl_owner == lease->fl_owner) {
8634b51f 1716 my_fl = fl;
c1f24ef4
BF
1717 continue;
1718 }
8634b51f 1719
c1f24ef4
BF
1720 /*
1721 * No exclusive leases if someone else has a lease on
1722 * this file:
1723 */
1724 if (arg == F_WRLCK)
1725 goto out;
1726 /*
1727 * Modifying our existing lease is OK, but no getting a
1728 * new lease if someone else is opening for write:
1729 */
1730 if (fl->fl_flags & FL_UNLOCK_PENDING)
1731 goto out;
1da177e4
LT
1732 }
1733
8634b51f 1734 if (my_fl != NULL) {
0164bf02
JL
1735 lease = my_fl;
1736 error = lease->fl_lmops->lm_change(lease, arg, &dispose);
1c7dd2ff
JL
1737 if (error)
1738 goto out;
1739 goto out_setup;
1da177e4
LT
1740 }
1741
1da177e4
LT
1742 error = -EINVAL;
1743 if (!leases_enable)
1744 goto out;
1745
e084c1bd 1746 locks_insert_lock_ctx(lease, &ctx->flc_lease);
24cbe784
JL
1747 /*
1748 * The check in break_lease() is lockless. It's possible for another
1749 * open to race in after we did the earlier check for a conflicting
1750 * open but before the lease was inserted. Check again for a
1751 * conflicting open and cancel the lease if there is one.
1752 *
1753 * We also add a barrier here to ensure that the insertion of the lock
1754 * precedes these checks.
1755 */
1756 smp_mb();
11afe9f7 1757 error = check_conflicting_open(dentry, arg, lease->fl_flags);
8634b51f 1758 if (error) {
e084c1bd 1759 locks_unlink_lock_ctx(lease);
8634b51f
JL
1760 goto out;
1761 }
1c7dd2ff
JL
1762
1763out_setup:
1764 if (lease->fl_lmops->lm_setup)
1765 lease->fl_lmops->lm_setup(lease, priv);
1da177e4 1766out:
6109c850 1767 spin_unlock(&ctx->flc_lock);
87709e28 1768 percpu_up_read_preempt_enable(&file_rwsem);
c45198ed 1769 locks_dispose_list(&dispose);
df4e8d2c 1770 if (is_deleg)
5955102c 1771 inode_unlock(inode);
8634b51f 1772 if (!error && !my_fl)
1c7dd2ff 1773 *flp = NULL;
1da177e4
LT
1774 return error;
1775}
8335ebd9 1776
2ab99ee1 1777static int generic_delete_lease(struct file *filp, void *owner)
8335ebd9 1778{
0efaa7e8 1779 int error = -EAGAIN;
8634b51f 1780 struct file_lock *fl, *victim = NULL;
c568d683 1781 struct inode *inode = locks_inode(filp);
128a3785 1782 struct file_lock_context *ctx;
c45198ed 1783 LIST_HEAD(dispose);
8335ebd9 1784
128a3785 1785 ctx = smp_load_acquire(&inode->i_flctx);
8634b51f
JL
1786 if (!ctx) {
1787 trace_generic_delete_lease(inode, NULL);
1788 return error;
1789 }
1790
87709e28 1791 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 1792 spin_lock(&ctx->flc_lock);
8634b51f 1793 list_for_each_entry(fl, &ctx->flc_lease, fl_list) {
2ab99ee1
CH
1794 if (fl->fl_file == filp &&
1795 fl->fl_owner == owner) {
8634b51f 1796 victim = fl;
0efaa7e8 1797 break;
8634b51f 1798 }
8335ebd9 1799 }
a9b1b455 1800 trace_generic_delete_lease(inode, victim);
8634b51f 1801 if (victim)
7448cc37 1802 error = fl->fl_lmops->lm_change(victim, F_UNLCK, &dispose);
6109c850 1803 spin_unlock(&ctx->flc_lock);
87709e28 1804 percpu_up_read_preempt_enable(&file_rwsem);
c45198ed 1805 locks_dispose_list(&dispose);
0efaa7e8 1806 return error;
8335ebd9
BF
1807}
1808
1809/**
1810 * generic_setlease - sets a lease on an open file
1c7dd2ff
JL
1811 * @filp: file pointer
1812 * @arg: type of lease to obtain
1813 * @flp: input - file_lock to use, output - file_lock inserted
1814 * @priv: private data for lm_setup (may be NULL if lm_setup
1815 * doesn't require it)
8335ebd9
BF
1816 *
1817 * The (input) flp->fl_lmops->lm_break function is required
1818 * by break_lease().
8335ebd9 1819 */
e6f5c789
JL
1820int generic_setlease(struct file *filp, long arg, struct file_lock **flp,
1821 void **priv)
8335ebd9 1822{
c568d683 1823 struct inode *inode = locks_inode(filp);
8335ebd9
BF
1824 int error;
1825
8e96e3b7 1826 if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
8335ebd9
BF
1827 return -EACCES;
1828 if (!S_ISREG(inode->i_mode))
1829 return -EINVAL;
1830 error = security_file_lock(filp, arg);
1831 if (error)
1832 return error;
1833
8335ebd9
BF
1834 switch (arg) {
1835 case F_UNLCK:
2ab99ee1 1836 return generic_delete_lease(filp, *priv);
8335ebd9
BF
1837 case F_RDLCK:
1838 case F_WRLCK:
0efaa7e8
JL
1839 if (!(*flp)->fl_lmops->lm_break) {
1840 WARN_ON_ONCE(1);
1841 return -ENOLCK;
1842 }
11afe9f7 1843
e6f5c789 1844 return generic_add_lease(filp, arg, flp, priv);
8335ebd9 1845 default:
8d657eb3 1846 return -EINVAL;
8335ebd9
BF
1847 }
1848}
0af1a450 1849EXPORT_SYMBOL(generic_setlease);
1da177e4 1850
b89f4321 1851/**
e51673aa 1852 * vfs_setlease - sets a lease on an open file
1c7dd2ff
JL
1853 * @filp: file pointer
1854 * @arg: type of lease to obtain
1855 * @lease: file_lock to use when adding a lease
1856 * @priv: private info for lm_setup when adding a lease (may be
1857 * NULL if lm_setup doesn't require it)
e51673aa
JL
1858 *
1859 * Call this to establish a lease on the file. The "lease" argument is not
1860 * used for F_UNLCK requests and may be NULL. For commands that set or alter
80b79dd0
MCC
1861 * an existing lease, the ``(*lease)->fl_lmops->lm_break`` operation must be
1862 * set; if not, this function will return -ENOLCK (and generate a scary-looking
e51673aa 1863 * stack trace).
1c7dd2ff
JL
1864 *
1865 * The "priv" pointer is passed directly to the lm_setup function as-is. It
1866 * may be NULL if the lm_setup operation doesn't require it.
1da177e4 1867 */
e6f5c789
JL
1868int
1869vfs_setlease(struct file *filp, long arg, struct file_lock **lease, void **priv)
1da177e4 1870{
c568d683 1871 if (filp->f_op->setlease && is_remote_lock(filp))
f82b4b67 1872 return filp->f_op->setlease(filp, arg, lease, priv);
1c7dd2ff 1873 else
f82b4b67 1874 return generic_setlease(filp, arg, lease, priv);
1da177e4 1875}
a9933cea 1876EXPORT_SYMBOL_GPL(vfs_setlease);
1da177e4 1877
0ceaf6c7 1878static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
1da177e4 1879{
1c7dd2ff 1880 struct file_lock *fl;
f7347ce4 1881 struct fasync_struct *new;
1da177e4
LT
1882 int error;
1883
c5b1f0d9
AB
1884 fl = lease_alloc(filp, arg);
1885 if (IS_ERR(fl))
1886 return PTR_ERR(fl);
1da177e4 1887
f7347ce4
LT
1888 new = fasync_alloc();
1889 if (!new) {
1890 locks_free_lock(fl);
1891 return -ENOMEM;
1892 }
1c7dd2ff 1893 new->fa_fd = fd;
f7347ce4 1894
1c7dd2ff 1895 error = vfs_setlease(filp, arg, &fl, (void **)&new);
2dfb928f
JL
1896 if (fl)
1897 locks_free_lock(fl);
f7347ce4
LT
1898 if (new)
1899 fasync_free(new);
1da177e4
LT
1900 return error;
1901}
1902
0ceaf6c7
BF
1903/**
1904 * fcntl_setlease - sets a lease on an open file
1905 * @fd: open file descriptor
1906 * @filp: file pointer
1907 * @arg: type of lease to obtain
1908 *
1909 * Call this fcntl to establish a lease on the file.
1910 * Note that you also need to call %F_SETSIG to
1911 * receive a signal when the lease is broken.
1912 */
1913int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1914{
1915 if (arg == F_UNLCK)
2ab99ee1 1916 return vfs_setlease(filp, F_UNLCK, NULL, (void **)&filp);
0ceaf6c7
BF
1917 return do_fcntl_add_lease(fd, filp, arg);
1918}
1919
1da177e4 1920/**
29d01b22
JL
1921 * flock_lock_inode_wait - Apply a FLOCK-style lock to a file
1922 * @inode: inode of the file to apply to
1da177e4
LT
1923 * @fl: The lock to be applied
1924 *
29d01b22 1925 * Apply a FLOCK style lock request to an inode.
1da177e4 1926 */
616fb38f 1927static int flock_lock_inode_wait(struct inode *inode, struct file_lock *fl)
1da177e4
LT
1928{
1929 int error;
1930 might_sleep();
1931 for (;;) {
29d01b22 1932 error = flock_lock_inode(inode, fl);
bde74e4b 1933 if (error != FILE_LOCK_DEFERRED)
1da177e4
LT
1934 break;
1935 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1936 if (!error)
1937 continue;
1938
1939 locks_delete_block(fl);
1940 break;
1941 }
1942 return error;
1943}
1944
e55c34a6
BC
1945/**
1946 * locks_lock_inode_wait - Apply a lock to an inode
1947 * @inode: inode of the file to apply to
1948 * @fl: The lock to be applied
1949 *
1950 * Apply a POSIX or FLOCK style lock request to an inode.
1951 */
1952int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl)
1953{
1954 int res = 0;
1955 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
1956 case FL_POSIX:
1957 res = posix_lock_inode_wait(inode, fl);
1958 break;
1959 case FL_FLOCK:
1960 res = flock_lock_inode_wait(inode, fl);
1961 break;
1962 default:
1963 BUG();
1964 }
1965 return res;
1966}
1967EXPORT_SYMBOL(locks_lock_inode_wait);
1968
1da177e4
LT
1969/**
1970 * sys_flock: - flock() system call.
1971 * @fd: the file descriptor to lock.
1972 * @cmd: the type of lock to apply.
1973 *
1974 * Apply a %FL_FLOCK style lock to an open file descriptor.
80b79dd0 1975 * The @cmd can be one of:
1da177e4 1976 *
80b79dd0
MCC
1977 * - %LOCK_SH -- a shared lock.
1978 * - %LOCK_EX -- an exclusive lock.
1979 * - %LOCK_UN -- remove an existing lock.
1980 * - %LOCK_MAND -- a 'mandatory' flock.
1981 * This exists to emulate Windows Share Modes.
1da177e4
LT
1982 *
1983 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1984 * processes read and write access respectively.
1985 */
002c8976 1986SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
1da177e4 1987{
2903ff01 1988 struct fd f = fdget(fd);
1da177e4
LT
1989 struct file_lock *lock;
1990 int can_sleep, unlock;
1991 int error;
1992
1993 error = -EBADF;
2903ff01 1994 if (!f.file)
1da177e4
LT
1995 goto out;
1996
1997 can_sleep = !(cmd & LOCK_NB);
1998 cmd &= ~LOCK_NB;
1999 unlock = (cmd == LOCK_UN);
2000
aeb5d727 2001 if (!unlock && !(cmd & LOCK_MAND) &&
2903ff01 2002 !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
1da177e4
LT
2003 goto out_putf;
2004
6e129d00
JL
2005 lock = flock_make_lock(f.file, cmd);
2006 if (IS_ERR(lock)) {
2007 error = PTR_ERR(lock);
1da177e4 2008 goto out_putf;
6e129d00
JL
2009 }
2010
1da177e4
LT
2011 if (can_sleep)
2012 lock->fl_flags |= FL_SLEEP;
2013
2903ff01 2014 error = security_file_lock(f.file, lock->fl_type);
1da177e4
LT
2015 if (error)
2016 goto out_free;
2017
c568d683 2018 if (f.file->f_op->flock && is_remote_lock(f.file))
2903ff01 2019 error = f.file->f_op->flock(f.file,
1da177e4
LT
2020 (can_sleep) ? F_SETLKW : F_SETLK,
2021 lock);
2022 else
4f656367 2023 error = locks_lock_file_wait(f.file, lock);
1da177e4
LT
2024
2025 out_free:
993dfa87 2026 locks_free_lock(lock);
1da177e4
LT
2027
2028 out_putf:
2903ff01 2029 fdput(f);
1da177e4
LT
2030 out:
2031 return error;
2032}
2033
3ee17abd
BF
2034/**
2035 * vfs_test_lock - test file byte range lock
2036 * @filp: The file to test lock for
6924c554 2037 * @fl: The lock to test; also used to hold result
3ee17abd
BF
2038 *
2039 * Returns -ERRNO on failure. Indicates presence of conflicting lock by
2040 * setting conf->fl_type to something other than F_UNLCK.
2041 */
2042int vfs_test_lock(struct file *filp, struct file_lock *fl)
2043{
c568d683 2044 if (filp->f_op->lock && is_remote_lock(filp))
3ee17abd
BF
2045 return filp->f_op->lock(filp, F_GETLK, fl);
2046 posix_test_lock(filp, fl);
2047 return 0;
2048}
2049EXPORT_SYMBOL_GPL(vfs_test_lock);
2050
c2fa1b8a
BF
2051static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
2052{
cff2fce5 2053 flock->l_pid = IS_OFDLCK(fl) ? -1 : fl->fl_pid;
c2fa1b8a
BF
2054#if BITS_PER_LONG == 32
2055 /*
2056 * Make sure we can represent the posix lock via
2057 * legacy 32bit flock.
2058 */
2059 if (fl->fl_start > OFFT_OFFSET_MAX)
2060 return -EOVERFLOW;
2061 if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
2062 return -EOVERFLOW;
2063#endif
2064 flock->l_start = fl->fl_start;
2065 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
2066 fl->fl_end - fl->fl_start + 1;
2067 flock->l_whence = 0;
129a84de 2068 flock->l_type = fl->fl_type;
c2fa1b8a
BF
2069 return 0;
2070}
2071
2072#if BITS_PER_LONG == 32
2073static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
2074{
cff2fce5 2075 flock->l_pid = IS_OFDLCK(fl) ? -1 : fl->fl_pid;
c2fa1b8a
BF
2076 flock->l_start = fl->fl_start;
2077 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
2078 fl->fl_end - fl->fl_start + 1;
2079 flock->l_whence = 0;
2080 flock->l_type = fl->fl_type;
2081}
2082#endif
2083
1da177e4
LT
2084/* Report the first existing lock that would conflict with l.
2085 * This implements the F_GETLK command of fcntl().
2086 */
a75d30c7 2087int fcntl_getlk(struct file *filp, unsigned int cmd, struct flock *flock)
1da177e4 2088{
9d6a8c5c 2089 struct file_lock file_lock;
1da177e4
LT
2090 int error;
2091
1da177e4 2092 error = -EINVAL;
a75d30c7 2093 if (flock->l_type != F_RDLCK && flock->l_type != F_WRLCK)
1da177e4
LT
2094 goto out;
2095
a75d30c7 2096 error = flock_to_posix_lock(filp, &file_lock, flock);
1da177e4
LT
2097 if (error)
2098 goto out;
2099
0d3f7a2d 2100 if (cmd == F_OFD_GETLK) {
90478939 2101 error = -EINVAL;
a75d30c7 2102 if (flock->l_pid != 0)
90478939
JL
2103 goto out;
2104
5d50ffd7 2105 cmd = F_GETLK;
cff2fce5 2106 file_lock.fl_flags |= FL_OFDLCK;
73a8f5f7 2107 file_lock.fl_owner = filp;
5d50ffd7
JL
2108 }
2109
3ee17abd
BF
2110 error = vfs_test_lock(filp, &file_lock);
2111 if (error)
2112 goto out;
1da177e4 2113
a75d30c7 2114 flock->l_type = file_lock.fl_type;
9d6a8c5c 2115 if (file_lock.fl_type != F_UNLCK) {
a75d30c7 2116 error = posix_lock_to_flock(flock, &file_lock);
c2fa1b8a 2117 if (error)
f328296e 2118 goto rel_priv;
1da177e4 2119 }
f328296e
KM
2120rel_priv:
2121 locks_release_private(&file_lock);
1da177e4
LT
2122out:
2123 return error;
2124}
2125
7723ec97
ME
2126/**
2127 * vfs_lock_file - file byte range lock
2128 * @filp: The file to apply the lock to
2129 * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
2130 * @fl: The lock to be applied
150b3934
ME
2131 * @conf: Place to return a copy of the conflicting lock, if found.
2132 *
2133 * A caller that doesn't care about the conflicting lock may pass NULL
2134 * as the final argument.
2135 *
2136 * If the filesystem defines a private ->lock() method, then @conf will
2137 * be left unchanged; so a caller that cares should initialize it to
2138 * some acceptable default.
2beb6614
ME
2139 *
2140 * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
2141 * locks, the ->lock() interface may return asynchronously, before the lock has
2142 * been granted or denied by the underlying filesystem, if (and only if)
8fb47a4f 2143 * lm_grant is set. Callers expecting ->lock() to return asynchronously
2beb6614
ME
2144 * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
2145 * the request is for a blocking lock. When ->lock() does return asynchronously,
8fb47a4f 2146 * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
2beb6614
ME
2147 * request completes.
2148 * If the request is for non-blocking lock the file system should return
bde74e4b
MS
2149 * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
2150 * with the result. If the request timed out the callback routine will return a
2beb6614
ME
2151 * nonzero return code and the file system should release the lock. The file
2152 * system is also responsible to keep a corresponding posix lock when it
2153 * grants a lock so the VFS can find out which locks are locally held and do
2154 * the correct lock cleanup when required.
2155 * The underlying filesystem must not drop the kernel lock or call
8fb47a4f 2156 * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
2beb6614 2157 * return code.
7723ec97 2158 */
150b3934 2159int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
7723ec97 2160{
c568d683 2161 if (filp->f_op->lock && is_remote_lock(filp))
7723ec97
ME
2162 return filp->f_op->lock(filp, cmd, fl);
2163 else
150b3934 2164 return posix_lock_file(filp, fl, conf);
7723ec97
ME
2165}
2166EXPORT_SYMBOL_GPL(vfs_lock_file);
2167
b648a6de
MS
2168static int do_lock_file_wait(struct file *filp, unsigned int cmd,
2169 struct file_lock *fl)
2170{
2171 int error;
2172
2173 error = security_file_lock(filp, fl->fl_type);
2174 if (error)
2175 return error;
2176
764c76b3
MS
2177 for (;;) {
2178 error = vfs_lock_file(filp, cmd, fl, NULL);
2179 if (error != FILE_LOCK_DEFERRED)
b648a6de 2180 break;
764c76b3
MS
2181 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
2182 if (!error)
2183 continue;
2184
2185 locks_delete_block(fl);
2186 break;
b648a6de
MS
2187 }
2188
2189 return error;
2190}
2191
6ca7d910 2192/* Ensure that fl->fl_file has compatible f_mode for F_SETLK calls */
cf01f4ee
JL
2193static int
2194check_fmode_for_setlk(struct file_lock *fl)
2195{
2196 switch (fl->fl_type) {
2197 case F_RDLCK:
2198 if (!(fl->fl_file->f_mode & FMODE_READ))
2199 return -EBADF;
2200 break;
2201 case F_WRLCK:
2202 if (!(fl->fl_file->f_mode & FMODE_WRITE))
2203 return -EBADF;
2204 }
2205 return 0;
2206}
2207
1da177e4
LT
2208/* Apply the lock described by l to an open file descriptor.
2209 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2210 */
c293621b 2211int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
a75d30c7 2212 struct flock *flock)
1da177e4
LT
2213{
2214 struct file_lock *file_lock = locks_alloc_lock();
a75d30c7 2215 struct inode *inode = locks_inode(filp);
0b2bac2f 2216 struct file *f;
1da177e4
LT
2217 int error;
2218
2219 if (file_lock == NULL)
2220 return -ENOLCK;
2221
1da177e4
LT
2222 /* Don't allow mandatory locks on files that may be memory mapped
2223 * and shared.
2224 */
a16877ca 2225 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
1da177e4
LT
2226 error = -EAGAIN;
2227 goto out;
2228 }
2229
a75d30c7 2230 error = flock_to_posix_lock(filp, file_lock, flock);
1da177e4
LT
2231 if (error)
2232 goto out;
5d50ffd7 2233
cf01f4ee
JL
2234 error = check_fmode_for_setlk(file_lock);
2235 if (error)
2236 goto out;
2237
5d50ffd7
JL
2238 /*
2239 * If the cmd is requesting file-private locks, then set the
cff2fce5 2240 * FL_OFDLCK flag and override the owner.
5d50ffd7
JL
2241 */
2242 switch (cmd) {
0d3f7a2d 2243 case F_OFD_SETLK:
90478939 2244 error = -EINVAL;
a75d30c7 2245 if (flock->l_pid != 0)
90478939
JL
2246 goto out;
2247
5d50ffd7 2248 cmd = F_SETLK;
cff2fce5 2249 file_lock->fl_flags |= FL_OFDLCK;
73a8f5f7 2250 file_lock->fl_owner = filp;
5d50ffd7 2251 break;
0d3f7a2d 2252 case F_OFD_SETLKW:
90478939 2253 error = -EINVAL;
a75d30c7 2254 if (flock->l_pid != 0)
90478939
JL
2255 goto out;
2256
5d50ffd7 2257 cmd = F_SETLKW;
cff2fce5 2258 file_lock->fl_flags |= FL_OFDLCK;
73a8f5f7 2259 file_lock->fl_owner = filp;
5d50ffd7
JL
2260 /* Fallthrough */
2261 case F_SETLKW:
1da177e4
LT
2262 file_lock->fl_flags |= FL_SLEEP;
2263 }
5d50ffd7 2264
b648a6de 2265 error = do_lock_file_wait(filp, cmd, file_lock);
1da177e4 2266
c293621b 2267 /*
0752ba80
JL
2268 * Attempt to detect a close/fcntl race and recover by releasing the
2269 * lock that was just acquired. There is no need to do that when we're
2270 * unlocking though, or for OFD locks.
c293621b 2271 */
0752ba80
JL
2272 if (!error && file_lock->fl_type != F_UNLCK &&
2273 !(file_lock->fl_flags & FL_OFDLCK)) {
7f3697e2
JL
2274 /*
2275 * We need that spin_lock here - it prevents reordering between
2276 * update of i_flctx->flc_posix and check for it done in
2277 * close(). rcu_read_lock() wouldn't do.
2278 */
2279 spin_lock(&current->files->file_lock);
2280 f = fcheck(fd);
2281 spin_unlock(&current->files->file_lock);
2282 if (f != filp) {
2283 file_lock->fl_type = F_UNLCK;
2284 error = do_lock_file_wait(filp, cmd, file_lock);
2285 WARN_ON_ONCE(error);
2286 error = -EBADF;
2287 }
1da177e4 2288 }
c293621b 2289out:
1890910f 2290 trace_fcntl_setlk(inode, file_lock, error);
1da177e4
LT
2291 locks_free_lock(file_lock);
2292 return error;
2293}
2294
2295#if BITS_PER_LONG == 32
2296/* Report the first existing lock that would conflict with l.
2297 * This implements the F_GETLK command of fcntl().
2298 */
a75d30c7 2299int fcntl_getlk64(struct file *filp, unsigned int cmd, struct flock64 *flock)
1da177e4 2300{
9d6a8c5c 2301 struct file_lock file_lock;
1da177e4
LT
2302 int error;
2303
1da177e4 2304 error = -EINVAL;
a75d30c7 2305 if (flock->l_type != F_RDLCK && flock->l_type != F_WRLCK)
1da177e4
LT
2306 goto out;
2307
a75d30c7 2308 error = flock64_to_posix_lock(filp, &file_lock, flock);
1da177e4
LT
2309 if (error)
2310 goto out;
2311
0d3f7a2d 2312 if (cmd == F_OFD_GETLK) {
90478939 2313 error = -EINVAL;
a75d30c7 2314 if (flock->l_pid != 0)
90478939
JL
2315 goto out;
2316
5d50ffd7 2317 cmd = F_GETLK64;
cff2fce5 2318 file_lock.fl_flags |= FL_OFDLCK;
73a8f5f7 2319 file_lock.fl_owner = filp;
5d50ffd7
JL
2320 }
2321
3ee17abd
BF
2322 error = vfs_test_lock(filp, &file_lock);
2323 if (error)
2324 goto out;
2325
a75d30c7 2326 flock->l_type = file_lock.fl_type;
9d6a8c5c 2327 if (file_lock.fl_type != F_UNLCK)
a75d30c7 2328 posix_lock_to_flock64(flock, &file_lock);
f328296e
KM
2329
2330 locks_release_private(&file_lock);
1da177e4
LT
2331out:
2332 return error;
2333}
2334
2335/* Apply the lock described by l to an open file descriptor.
2336 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2337 */
c293621b 2338int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
a75d30c7 2339 struct flock64 *flock)
1da177e4
LT
2340{
2341 struct file_lock *file_lock = locks_alloc_lock();
a75d30c7 2342 struct inode *inode = locks_inode(filp);
0b2bac2f 2343 struct file *f;
1da177e4
LT
2344 int error;
2345
2346 if (file_lock == NULL)
2347 return -ENOLCK;
2348
1da177e4
LT
2349 /* Don't allow mandatory locks on files that may be memory mapped
2350 * and shared.
2351 */
a16877ca 2352 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
1da177e4
LT
2353 error = -EAGAIN;
2354 goto out;
2355 }
2356
a75d30c7 2357 error = flock64_to_posix_lock(filp, file_lock, flock);
1da177e4
LT
2358 if (error)
2359 goto out;
5d50ffd7 2360
cf01f4ee
JL
2361 error = check_fmode_for_setlk(file_lock);
2362 if (error)
2363 goto out;
2364
5d50ffd7
JL
2365 /*
2366 * If the cmd is requesting file-private locks, then set the
cff2fce5 2367 * FL_OFDLCK flag and override the owner.
5d50ffd7
JL
2368 */
2369 switch (cmd) {
0d3f7a2d 2370 case F_OFD_SETLK:
90478939 2371 error = -EINVAL;
a75d30c7 2372 if (flock->l_pid != 0)
90478939
JL
2373 goto out;
2374
5d50ffd7 2375 cmd = F_SETLK64;
cff2fce5 2376 file_lock->fl_flags |= FL_OFDLCK;
73a8f5f7 2377 file_lock->fl_owner = filp;
5d50ffd7 2378 break;
0d3f7a2d 2379 case F_OFD_SETLKW:
90478939 2380 error = -EINVAL;
a75d30c7 2381 if (flock->l_pid != 0)
90478939
JL
2382 goto out;
2383
5d50ffd7 2384 cmd = F_SETLKW64;
cff2fce5 2385 file_lock->fl_flags |= FL_OFDLCK;
73a8f5f7 2386 file_lock->fl_owner = filp;
5d50ffd7
JL
2387 /* Fallthrough */
2388 case F_SETLKW64:
1da177e4
LT
2389 file_lock->fl_flags |= FL_SLEEP;
2390 }
5d50ffd7 2391
b648a6de 2392 error = do_lock_file_wait(filp, cmd, file_lock);
1da177e4 2393
c293621b 2394 /*
0752ba80
JL
2395 * Attempt to detect a close/fcntl race and recover by releasing the
2396 * lock that was just acquired. There is no need to do that when we're
2397 * unlocking though, or for OFD locks.
c293621b 2398 */
0752ba80
JL
2399 if (!error && file_lock->fl_type != F_UNLCK &&
2400 !(file_lock->fl_flags & FL_OFDLCK)) {
7f3697e2
JL
2401 /*
2402 * We need that spin_lock here - it prevents reordering between
2403 * update of i_flctx->flc_posix and check for it done in
2404 * close(). rcu_read_lock() wouldn't do.
2405 */
2406 spin_lock(&current->files->file_lock);
2407 f = fcheck(fd);
2408 spin_unlock(&current->files->file_lock);
2409 if (f != filp) {
2410 file_lock->fl_type = F_UNLCK;
2411 error = do_lock_file_wait(filp, cmd, file_lock);
2412 WARN_ON_ONCE(error);
2413 error = -EBADF;
2414 }
1da177e4 2415 }
1da177e4
LT
2416out:
2417 locks_free_lock(file_lock);
2418 return error;
2419}
2420#endif /* BITS_PER_LONG == 32 */
2421
2422/*
2423 * This function is called when the file is being removed
2424 * from the task's fd array. POSIX locks belonging to this task
2425 * are deleted at this time.
2426 */
2427void locks_remove_posix(struct file *filp, fl_owner_t owner)
2428{
1890910f 2429 int error;
c568d683 2430 struct inode *inode = locks_inode(filp);
ff7b86b8 2431 struct file_lock lock;
128a3785 2432 struct file_lock_context *ctx;
1da177e4
LT
2433
2434 /*
2435 * If there are no locks held on this file, we don't need to call
2436 * posix_lock_file(). Another process could be setting a lock on this
2437 * file at the same time, but we wouldn't remove that lock anyway.
2438 */
c568d683 2439 ctx = smp_load_acquire(&inode->i_flctx);
bd61e0a9 2440 if (!ctx || list_empty(&ctx->flc_posix))
1da177e4
LT
2441 return;
2442
2443 lock.fl_type = F_UNLCK;
75e1fcc0 2444 lock.fl_flags = FL_POSIX | FL_CLOSE;
1da177e4
LT
2445 lock.fl_start = 0;
2446 lock.fl_end = OFFSET_MAX;
2447 lock.fl_owner = owner;
2448 lock.fl_pid = current->tgid;
2449 lock.fl_file = filp;
2450 lock.fl_ops = NULL;
2451 lock.fl_lmops = NULL;
2452
1890910f 2453 error = vfs_lock_file(filp, F_SETLK, &lock, NULL);
1da177e4 2454
1da177e4
LT
2455 if (lock.fl_ops && lock.fl_ops->fl_release_private)
2456 lock.fl_ops->fl_release_private(&lock);
c568d683 2457 trace_locks_remove_posix(inode, &lock, error);
1da177e4
LT
2458}
2459
2460EXPORT_SYMBOL(locks_remove_posix);
2461
3d8e560d 2462/* The i_flctx must be valid when calling into here */
dd459bb1 2463static void
128a3785 2464locks_remove_flock(struct file *filp, struct file_lock_context *flctx)
dd459bb1
JL
2465{
2466 struct file_lock fl = {
2467 .fl_owner = filp,
2468 .fl_pid = current->tgid,
2469 .fl_file = filp,
50f2112c 2470 .fl_flags = FL_FLOCK | FL_CLOSE,
dd459bb1
JL
2471 .fl_type = F_UNLCK,
2472 .fl_end = OFFSET_MAX,
2473 };
c568d683 2474 struct inode *inode = locks_inode(filp);
dd459bb1 2475
3d8e560d 2476 if (list_empty(&flctx->flc_flock))
dd459bb1
JL
2477 return;
2478
c568d683 2479 if (filp->f_op->flock && is_remote_lock(filp))
dd459bb1
JL
2480 filp->f_op->flock(filp, F_SETLKW, &fl);
2481 else
bcd7f78d 2482 flock_lock_inode(inode, &fl);
dd459bb1
JL
2483
2484 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2485 fl.fl_ops->fl_release_private(&fl);
2486}
2487
3d8e560d 2488/* The i_flctx must be valid when calling into here */
8634b51f 2489static void
128a3785 2490locks_remove_lease(struct file *filp, struct file_lock_context *ctx)
8634b51f 2491{
8634b51f
JL
2492 struct file_lock *fl, *tmp;
2493 LIST_HEAD(dispose);
2494
3d8e560d 2495 if (list_empty(&ctx->flc_lease))
8634b51f
JL
2496 return;
2497
5f43086b 2498 percpu_down_read_preempt_disable(&file_rwsem);
6109c850 2499 spin_lock(&ctx->flc_lock);
8634b51f 2500 list_for_each_entry_safe(fl, tmp, &ctx->flc_lease, fl_list)
c4e136cd
JL
2501 if (filp == fl->fl_file)
2502 lease_modify(fl, F_UNLCK, &dispose);
6109c850 2503 spin_unlock(&ctx->flc_lock);
5f43086b
PZ
2504 percpu_up_read_preempt_enable(&file_rwsem);
2505
8634b51f
JL
2506 locks_dispose_list(&dispose);
2507}
2508
1da177e4
LT
2509/*
2510 * This function is called on the last close of an open file.
2511 */
78ed8a13 2512void locks_remove_file(struct file *filp)
1da177e4 2513{
128a3785
DV
2514 struct file_lock_context *ctx;
2515
c568d683 2516 ctx = smp_load_acquire(&locks_inode(filp)->i_flctx);
128a3785 2517 if (!ctx)
3d8e560d
JL
2518 return;
2519
dd459bb1 2520 /* remove any OFD locks */
73a8f5f7 2521 locks_remove_posix(filp, filp);
5d50ffd7 2522
dd459bb1 2523 /* remove flock locks */
128a3785 2524 locks_remove_flock(filp, ctx);
dd459bb1 2525
8634b51f 2526 /* remove any leases */
128a3785 2527 locks_remove_lease(filp, ctx);
1da177e4
LT
2528}
2529
1da177e4
LT
2530/**
2531 * posix_unblock_lock - stop waiting for a file lock
1da177e4
LT
2532 * @waiter: the lock which was waiting
2533 *
2534 * lockd needs to block waiting for locks.
2535 */
64a318ee 2536int
f891a29f 2537posix_unblock_lock(struct file_lock *waiter)
1da177e4 2538{
64a318ee
BF
2539 int status = 0;
2540
7b2296af 2541 spin_lock(&blocked_lock_lock);
5996a298 2542 if (waiter->fl_next)
1da177e4 2543 __locks_delete_block(waiter);
64a318ee
BF
2544 else
2545 status = -ENOENT;
7b2296af 2546 spin_unlock(&blocked_lock_lock);
64a318ee 2547 return status;
1da177e4 2548}
1da177e4
LT
2549EXPORT_SYMBOL(posix_unblock_lock);
2550
9b9d2ab4
ME
2551/**
2552 * vfs_cancel_lock - file byte range unblock lock
2553 * @filp: The file to apply the unblock to
2554 * @fl: The lock to be unblocked
2555 *
2556 * Used by lock managers to cancel blocked requests
2557 */
2558int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
2559{
c568d683 2560 if (filp->f_op->lock && is_remote_lock(filp))
9b9d2ab4
ME
2561 return filp->f_op->lock(filp, F_CANCELLK, fl);
2562 return 0;
2563}
2564
2565EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2566
7f8ada98 2567#ifdef CONFIG_PROC_FS
d8ba7a36 2568#include <linux/proc_fs.h>
7f8ada98
PE
2569#include <linux/seq_file.h>
2570
7012b02a
JL
2571struct locks_iterator {
2572 int li_cpu;
2573 loff_t li_pos;
2574};
2575
7f8ada98 2576static void lock_get_status(struct seq_file *f, struct file_lock *fl,
99dc8292 2577 loff_t id, char *pfx)
1da177e4
LT
2578{
2579 struct inode *inode = NULL;
ab1f1611
VG
2580 unsigned int fl_pid;
2581
d67fd44f
NB
2582 if (fl->fl_nspid) {
2583 struct pid_namespace *proc_pidns = file_inode(f->file)->i_sb->s_fs_info;
2584
2585 /* Don't let fl_pid change based on who is reading the file */
2586 fl_pid = pid_nr_ns(fl->fl_nspid, proc_pidns);
2587
2588 /*
2589 * If there isn't a fl_pid don't display who is waiting on
2590 * the lock if we are called from locks_show, or if we are
2591 * called from __show_fd_info - skip lock entirely
2592 */
2593 if (fl_pid == 0)
2594 return;
2595 } else
ab1f1611 2596 fl_pid = fl->fl_pid;
1da177e4
LT
2597
2598 if (fl->fl_file != NULL)
c568d683 2599 inode = locks_inode(fl->fl_file);
1da177e4 2600
99dc8292 2601 seq_printf(f, "%lld:%s ", id, pfx);
1da177e4 2602 if (IS_POSIX(fl)) {
c918d42a 2603 if (fl->fl_flags & FL_ACCESS)
5315c26a 2604 seq_puts(f, "ACCESS");
cff2fce5 2605 else if (IS_OFDLCK(fl))
5315c26a 2606 seq_puts(f, "OFDLCK");
c918d42a 2607 else
5315c26a 2608 seq_puts(f, "POSIX ");
c918d42a
JL
2609
2610 seq_printf(f, " %s ",
1da177e4 2611 (inode == NULL) ? "*NOINODE*" :
a16877ca 2612 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
1da177e4
LT
2613 } else if (IS_FLOCK(fl)) {
2614 if (fl->fl_type & LOCK_MAND) {
5315c26a 2615 seq_puts(f, "FLOCK MSNFS ");
1da177e4 2616 } else {
5315c26a 2617 seq_puts(f, "FLOCK ADVISORY ");
1da177e4
LT
2618 }
2619 } else if (IS_LEASE(fl)) {
8144f1f6
JL
2620 if (fl->fl_flags & FL_DELEG)
2621 seq_puts(f, "DELEG ");
2622 else
2623 seq_puts(f, "LEASE ");
2624
ab83fa4b 2625 if (lease_breaking(fl))
5315c26a 2626 seq_puts(f, "BREAKING ");
1da177e4 2627 else if (fl->fl_file)
5315c26a 2628 seq_puts(f, "ACTIVE ");
1da177e4 2629 else
5315c26a 2630 seq_puts(f, "BREAKER ");
1da177e4 2631 } else {
5315c26a 2632 seq_puts(f, "UNKNOWN UNKNOWN ");
1da177e4
LT
2633 }
2634 if (fl->fl_type & LOCK_MAND) {
7f8ada98 2635 seq_printf(f, "%s ",
1da177e4
LT
2636 (fl->fl_type & LOCK_READ)
2637 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
2638 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2639 } else {
7f8ada98 2640 seq_printf(f, "%s ",
ab83fa4b 2641 (lease_breaking(fl))
0ee5c6d6
JL
2642 ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2643 : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
1da177e4
LT
2644 }
2645 if (inode) {
3648888e 2646 /* userspace relies on this representation of dev_t */
ab1f1611 2647 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
1da177e4
LT
2648 MAJOR(inode->i_sb->s_dev),
2649 MINOR(inode->i_sb->s_dev), inode->i_ino);
1da177e4 2650 } else {
ab1f1611 2651 seq_printf(f, "%d <none>:0 ", fl_pid);
1da177e4
LT
2652 }
2653 if (IS_POSIX(fl)) {
2654 if (fl->fl_end == OFFSET_MAX)
7f8ada98 2655 seq_printf(f, "%Ld EOF\n", fl->fl_start);
1da177e4 2656 else
7f8ada98 2657 seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
1da177e4 2658 } else {
5315c26a 2659 seq_puts(f, "0 EOF\n");
1da177e4
LT
2660 }
2661}
2662
7f8ada98 2663static int locks_show(struct seq_file *f, void *v)
1da177e4 2664{
7012b02a 2665 struct locks_iterator *iter = f->private;
7f8ada98 2666 struct file_lock *fl, *bfl;
d67fd44f 2667 struct pid_namespace *proc_pidns = file_inode(f->file)->i_sb->s_fs_info;
1da177e4 2668
139ca04e 2669 fl = hlist_entry(v, struct file_lock, fl_link);
1da177e4 2670
d67fd44f
NB
2671 if (fl->fl_nspid && !pid_nr_ns(fl->fl_nspid, proc_pidns))
2672 return 0;
2673
7012b02a 2674 lock_get_status(f, fl, iter->li_pos, "");
1da177e4 2675
7f8ada98 2676 list_for_each_entry(bfl, &fl->fl_block, fl_block)
7012b02a 2677 lock_get_status(f, bfl, iter->li_pos, " ->");
094f2825 2678
7f8ada98
PE
2679 return 0;
2680}
1da177e4 2681
6c8c9031
AV
2682static void __show_fd_locks(struct seq_file *f,
2683 struct list_head *head, int *id,
2684 struct file *filp, struct files_struct *files)
2685{
2686 struct file_lock *fl;
2687
2688 list_for_each_entry(fl, head, fl_list) {
2689
2690 if (filp != fl->fl_file)
2691 continue;
2692 if (fl->fl_owner != files &&
2693 fl->fl_owner != filp)
2694 continue;
2695
2696 (*id)++;
2697 seq_puts(f, "lock:\t");
2698 lock_get_status(f, fl, *id, "");
2699 }
2700}
2701
2702void show_fd_locks(struct seq_file *f,
2703 struct file *filp, struct files_struct *files)
2704{
c568d683 2705 struct inode *inode = locks_inode(filp);
6c8c9031
AV
2706 struct file_lock_context *ctx;
2707 int id = 0;
2708
128a3785 2709 ctx = smp_load_acquire(&inode->i_flctx);
6c8c9031
AV
2710 if (!ctx)
2711 return;
2712
2713 spin_lock(&ctx->flc_lock);
2714 __show_fd_locks(f, &ctx->flc_flock, &id, filp, files);
2715 __show_fd_locks(f, &ctx->flc_posix, &id, filp, files);
2716 __show_fd_locks(f, &ctx->flc_lease, &id, filp, files);
2717 spin_unlock(&ctx->flc_lock);
2718}
2719
7f8ada98 2720static void *locks_start(struct seq_file *f, loff_t *pos)
b03dfdec 2721 __acquires(&blocked_lock_lock)
7f8ada98 2722{
7012b02a 2723 struct locks_iterator *iter = f->private;
99dc8292 2724
7012b02a 2725 iter->li_pos = *pos + 1;
aba37660 2726 percpu_down_write(&file_rwsem);
7b2296af 2727 spin_lock(&blocked_lock_lock);
7c3f654d 2728 return seq_hlist_start_percpu(&file_lock_list.hlist, &iter->li_cpu, *pos);
7f8ada98 2729}
1da177e4 2730
7f8ada98
PE
2731static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2732{
7012b02a
JL
2733 struct locks_iterator *iter = f->private;
2734
2735 ++iter->li_pos;
7c3f654d 2736 return seq_hlist_next_percpu(v, &file_lock_list.hlist, &iter->li_cpu, pos);
7f8ada98 2737}
1da177e4 2738
7f8ada98 2739static void locks_stop(struct seq_file *f, void *v)
b03dfdec 2740 __releases(&blocked_lock_lock)
7f8ada98 2741{
7b2296af 2742 spin_unlock(&blocked_lock_lock);
aba37660 2743 percpu_up_write(&file_rwsem);
1da177e4
LT
2744}
2745
d8ba7a36 2746static const struct seq_operations locks_seq_operations = {
7f8ada98
PE
2747 .start = locks_start,
2748 .next = locks_next,
2749 .stop = locks_stop,
2750 .show = locks_show,
2751};
d8ba7a36
AD
2752
2753static int locks_open(struct inode *inode, struct file *filp)
2754{
7012b02a
JL
2755 return seq_open_private(filp, &locks_seq_operations,
2756 sizeof(struct locks_iterator));
d8ba7a36
AD
2757}
2758
2759static const struct file_operations proc_locks_operations = {
2760 .open = locks_open,
2761 .read = seq_read,
2762 .llseek = seq_lseek,
99dc8292 2763 .release = seq_release_private,
d8ba7a36
AD
2764};
2765
2766static int __init proc_locks_init(void)
2767{
2768 proc_create("locks", 0, NULL, &proc_locks_operations);
2769 return 0;
2770}
91899226 2771fs_initcall(proc_locks_init);
7f8ada98
PE
2772#endif
2773
1da177e4
LT
2774static int __init filelock_init(void)
2775{
7012b02a
JL
2776 int i;
2777
4a075e39
JL
2778 flctx_cache = kmem_cache_create("file_lock_ctx",
2779 sizeof(struct file_lock_context), 0, SLAB_PANIC, NULL);
2780
1da177e4 2781 filelock_cache = kmem_cache_create("file_lock_cache",
ee19cc40
MS
2782 sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2783
7012b02a 2784
7c3f654d
PZ
2785 for_each_possible_cpu(i) {
2786 struct file_lock_list_struct *fll = per_cpu_ptr(&file_lock_list, i);
2787
2788 spin_lock_init(&fll->lock);
2789 INIT_HLIST_HEAD(&fll->hlist);
2790 }
7012b02a 2791
1da177e4
LT
2792 return 0;
2793}
2794
2795core_initcall(filelock_init);