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