]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/locks.c
locks: fix posix lock range overflow handling
[mirror_ubuntu-artful-kernel.git] / fs / locks.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/locks.c
3 *
4 * Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls.
5 * Doug Evans (dje@spiff.uucp), August 07, 1992
6 *
7 * Deadlock detection added.
8 * FIXME: one thing isn't handled yet:
9 * - mandatory locks (requires lots of changes elsewhere)
10 * Kelly Carmichael (kelly@[142.24.8.65]), September 17, 1994.
11 *
12 * Miscellaneous edits, and a total rewrite of posix_lock_file() code.
13 * Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994
14 *
15 * Converted file_lock_table to a linked list from an array, which eliminates
16 * the limits on how many active file locks are open.
17 * Chad Page (pageone@netcom.com), November 27, 1994
18 *
19 * Removed dependency on file descriptors. dup()'ed file descriptors now
20 * get the same locks as the original file descriptors, and a close() on
21 * any file descriptor removes ALL the locks on the file for the current
22 * process. Since locks still depend on the process id, locks are inherited
23 * after an exec() but not after a fork(). This agrees with POSIX, and both
24 * BSD and SVR4 practice.
25 * Andy Walker (andy@lysaker.kvaerner.no), February 14, 1995
26 *
27 * Scrapped free list which is redundant now that we allocate locks
28 * dynamically with kmalloc()/kfree().
29 * Andy Walker (andy@lysaker.kvaerner.no), February 21, 1995
30 *
31 * Implemented two lock personalities - FL_FLOCK and FL_POSIX.
32 *
33 * FL_POSIX locks are created with calls to fcntl() and lockf() through the
34 * fcntl() system call. They have the semantics described above.
35 *
36 * FL_FLOCK locks are created with calls to flock(), through the flock()
37 * system call, which is new. Old C libraries implement flock() via fcntl()
38 * and will continue to use the old, broken implementation.
39 *
40 * FL_FLOCK locks follow the 4.4 BSD flock() semantics. They are associated
41 * with a file pointer (filp). As a result they can be shared by a parent
42 * process and its children after a fork(). They are removed when the last
43 * file descriptor referring to the file pointer is closed (unless explicitly
44 * unlocked).
45 *
46 * FL_FLOCK locks never deadlock, an existing lock is always removed before
47 * upgrading from shared to exclusive (or vice versa). When this happens
48 * any processes blocked by the current lock are woken up and allowed to
49 * run before the new lock is applied.
50 * Andy Walker (andy@lysaker.kvaerner.no), June 09, 1995
51 *
52 * Removed some race conditions in flock_lock_file(), marked other possible
53 * races. Just grep for FIXME to see them.
54 * Dmitry Gorodchanin (pgmdsg@ibi.com), February 09, 1996.
55 *
56 * Addressed Dmitry's concerns. Deadlock checking no longer recursive.
57 * Lock allocation changed to GFP_ATOMIC as we can't afford to sleep
58 * once we've checked for blocking and deadlocking.
59 * Andy Walker (andy@lysaker.kvaerner.no), April 03, 1996.
60 *
61 * Initial implementation of mandatory locks. SunOS turned out to be
62 * a rotten model, so I implemented the "obvious" semantics.
395cf969 63 * See 'Documentation/filesystems/mandatory-locking.txt' for details.
1da177e4
LT
64 * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996.
65 *
66 * Don't allow mandatory locks on mmap()'ed files. Added simple functions to
67 * check if a file has mandatory locks, used by mmap(), open() and creat() to
68 * see if system call should be rejected. Ref. HP-UX/SunOS/Solaris Reference
69 * Manual, Section 2.
70 * Andy Walker (andy@lysaker.kvaerner.no), April 09, 1996.
71 *
72 * Tidied up block list handling. Added '/proc/locks' interface.
73 * Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996.
74 *
75 * Fixed deadlock condition for pathological code that mixes calls to
76 * flock() and fcntl().
77 * Andy Walker (andy@lysaker.kvaerner.no), April 29, 1996.
78 *
79 * Allow only one type of locking scheme (FL_POSIX or FL_FLOCK) to be in use
80 * for a given file at a time. Changed the CONFIG_LOCK_MANDATORY scheme to
81 * guarantee sensible behaviour in the case where file system modules might
82 * be compiled with different options than the kernel itself.
83 * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
84 *
85 * Added a couple of missing wake_up() calls. Thanks to Thomas Meckel
86 * (Thomas.Meckel@mni.fh-giessen.de) for spotting this.
87 * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
88 *
89 * Changed FL_POSIX locks to use the block list in the same way as FL_FLOCK
90 * locks. Changed process synchronisation to avoid dereferencing locks that
91 * have already been freed.
92 * Andy Walker (andy@lysaker.kvaerner.no), Sep 21, 1996.
93 *
94 * Made the block list a circular list to minimise searching in the list.
95 * Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996.
96 *
97 * Made mandatory locking a mount option. Default is not to allow mandatory
98 * locking.
99 * Andy Walker (andy@lysaker.kvaerner.no), Oct 04, 1996.
100 *
101 * Some adaptations for NFS support.
102 * Olaf Kirch (okir@monad.swb.de), Dec 1996,
103 *
104 * Fixed /proc/locks interface so that we can't overrun the buffer we are handed.
105 * Andy Walker (andy@lysaker.kvaerner.no), May 12, 1997.
106 *
107 * Use slab allocator instead of kmalloc/kfree.
108 * Use generic list implementation from <linux/list.h>.
109 * Sped up posix_locks_deadlock by only considering blocked locks.
110 * Matthew Wilcox <willy@debian.org>, March, 2000.
111 *
112 * Leases and LOCK_MAND
113 * Matthew Wilcox <willy@debian.org>, June, 2000.
114 * Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000.
115 */
116
117#include <linux/capability.h>
118#include <linux/file.h>
9f3acc31 119#include <linux/fdtable.h>
1da177e4
LT
120#include <linux/fs.h>
121#include <linux/init.h>
122#include <linux/module.h>
123#include <linux/security.h>
124#include <linux/slab.h>
1da177e4
LT
125#include <linux/syscalls.h>
126#include <linux/time.h>
4fb3a538 127#include <linux/rcupdate.h>
ab1f1611 128#include <linux/pid_namespace.h>
48f74186 129#include <linux/hashtable.h>
7012b02a
JL
130#include <linux/percpu.h>
131#include <linux/lglock.h>
1da177e4 132
1da177e4
LT
133#include <asm/uaccess.h>
134
135#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
136#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
617588d5 137#define IS_LEASE(fl) (fl->fl_flags & (FL_LEASE|FL_DELEG))
1da177e4 138
ab83fa4b
BF
139static bool lease_breaking(struct file_lock *fl)
140{
778fc546
BF
141 return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
142}
143
144static int target_leasetype(struct file_lock *fl)
145{
146 if (fl->fl_flags & FL_UNLOCK_PENDING)
147 return F_UNLCK;
148 if (fl->fl_flags & FL_DOWNGRADE_PENDING)
149 return F_RDLCK;
150 return fl->fl_type;
ab83fa4b
BF
151}
152
1da177e4
LT
153int leases_enable = 1;
154int lease_break_time = 45;
155
156#define for_each_lock(inode, lockp) \
157 for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
158
1c8c601a 159/*
7012b02a
JL
160 * The global file_lock_list is only used for displaying /proc/locks, so we
161 * keep a list on each CPU, with each list protected by its own spinlock via
162 * the file_lock_lglock. Note that alterations to the list also require that
163 * the relevant i_lock is held.
1c8c601a 164 */
7012b02a
JL
165DEFINE_STATIC_LGLOCK(file_lock_lglock);
166static DEFINE_PER_CPU(struct hlist_head, file_lock_list);
88974691 167
1c8c601a 168/*
48f74186 169 * The blocked_hash is used to find POSIX lock loops for deadlock detection.
7b2296af 170 * It is protected by blocked_lock_lock.
48f74186
JL
171 *
172 * We hash locks by lockowner in order to optimize searching for the lock a
173 * particular lockowner is waiting on.
174 *
175 * FIXME: make this value scale via some heuristic? We generally will want more
176 * buckets when we have more lockowners holding locks, but that's a little
177 * difficult to determine without knowing what the workload will look like.
1c8c601a 178 */
48f74186
JL
179#define BLOCKED_HASH_BITS 7
180static DEFINE_HASHTABLE(blocked_hash, BLOCKED_HASH_BITS);
88974691 181
1c8c601a 182/*
7b2296af
JL
183 * This lock protects the blocked_hash. Generally, if you're accessing it, you
184 * want to be holding this lock.
1c8c601a
JL
185 *
186 * In addition, it also protects the fl->fl_block list, and the fl->fl_next
187 * pointer for file_lock structures that are acting as lock requests (in
188 * contrast to those that are acting as records of acquired locks).
189 *
190 * Note that when we acquire this lock in order to change the above fields,
191 * we often hold the i_lock as well. In certain cases, when reading the fields
192 * protected by this lock, we can skip acquiring it iff we already hold the
193 * i_lock.
194 *
195 * In particular, adding an entry to the fl_block list requires that you hold
196 * both the i_lock and the blocked_lock_lock (acquired in that order). Deleting
197 * an entry from the list however only requires the file_lock_lock.
198 */
7b2296af 199static DEFINE_SPINLOCK(blocked_lock_lock);
1da177e4 200
e18b890b 201static struct kmem_cache *filelock_cache __read_mostly;
1da177e4 202
ee19cc40 203static void locks_init_lock_heads(struct file_lock *fl)
a51cb91d 204{
139ca04e 205 INIT_HLIST_NODE(&fl->fl_link);
ee19cc40
MS
206 INIT_LIST_HEAD(&fl->fl_block);
207 init_waitqueue_head(&fl->fl_wait);
a51cb91d
MS
208}
209
1da177e4 210/* Allocate an empty lock structure. */
c5b1f0d9 211struct file_lock *locks_alloc_lock(void)
1da177e4 212{
ee19cc40 213 struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
a51cb91d
MS
214
215 if (fl)
ee19cc40 216 locks_init_lock_heads(fl);
a51cb91d
MS
217
218 return fl;
1da177e4 219}
c5b1f0d9 220EXPORT_SYMBOL_GPL(locks_alloc_lock);
1da177e4 221
a9e61e25 222void locks_release_private(struct file_lock *fl)
47831f35
TM
223{
224 if (fl->fl_ops) {
225 if (fl->fl_ops->fl_release_private)
226 fl->fl_ops->fl_release_private(fl);
227 fl->fl_ops = NULL;
228 }
068535f1 229 fl->fl_lmops = NULL;
47831f35
TM
230
231}
a9e61e25 232EXPORT_SYMBOL_GPL(locks_release_private);
47831f35 233
1da177e4 234/* Free a lock which is not in use. */
05fa3135 235void locks_free_lock(struct file_lock *fl)
1da177e4 236{
5ce29646
MS
237 BUG_ON(waitqueue_active(&fl->fl_wait));
238 BUG_ON(!list_empty(&fl->fl_block));
139ca04e 239 BUG_ON(!hlist_unhashed(&fl->fl_link));
1da177e4 240
47831f35 241 locks_release_private(fl);
1da177e4
LT
242 kmem_cache_free(filelock_cache, fl);
243}
05fa3135 244EXPORT_SYMBOL(locks_free_lock);
1da177e4
LT
245
246void locks_init_lock(struct file_lock *fl)
247{
ee19cc40
MS
248 memset(fl, 0, sizeof(struct file_lock));
249 locks_init_lock_heads(fl);
1da177e4
LT
250}
251
252EXPORT_SYMBOL(locks_init_lock);
253
47831f35
TM
254static void locks_copy_private(struct file_lock *new, struct file_lock *fl)
255{
256 if (fl->fl_ops) {
257 if (fl->fl_ops->fl_copy_lock)
258 fl->fl_ops->fl_copy_lock(new, fl);
259 new->fl_ops = fl->fl_ops;
260 }
bb8430a2 261 if (fl->fl_lmops)
47831f35 262 new->fl_lmops = fl->fl_lmops;
47831f35
TM
263}
264
1da177e4
LT
265/*
266 * Initialize a new lock from an existing file_lock structure.
267 */
1a747ee0 268void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
1da177e4
LT
269{
270 new->fl_owner = fl->fl_owner;
271 new->fl_pid = fl->fl_pid;
0996905f 272 new->fl_file = NULL;
1da177e4
LT
273 new->fl_flags = fl->fl_flags;
274 new->fl_type = fl->fl_type;
275 new->fl_start = fl->fl_start;
276 new->fl_end = fl->fl_end;
0996905f
TM
277 new->fl_ops = NULL;
278 new->fl_lmops = NULL;
279}
3dd7b71c 280EXPORT_SYMBOL(__locks_copy_lock);
0996905f
TM
281
282void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
283{
284 locks_release_private(new);
285
286 __locks_copy_lock(new, fl);
287 new->fl_file = fl->fl_file;
1da177e4
LT
288 new->fl_ops = fl->fl_ops;
289 new->fl_lmops = fl->fl_lmops;
47831f35
TM
290
291 locks_copy_private(new, fl);
1da177e4
LT
292}
293
294EXPORT_SYMBOL(locks_copy_lock);
295
296static inline int flock_translate_cmd(int cmd) {
297 if (cmd & LOCK_MAND)
298 return cmd & (LOCK_MAND | LOCK_RW);
299 switch (cmd) {
300 case LOCK_SH:
301 return F_RDLCK;
302 case LOCK_EX:
303 return F_WRLCK;
304 case LOCK_UN:
305 return F_UNLCK;
306 }
307 return -EINVAL;
308}
309
310/* Fill in a file_lock structure with an appropriate FLOCK lock. */
311static int flock_make_lock(struct file *filp, struct file_lock **lock,
312 unsigned int cmd)
313{
314 struct file_lock *fl;
315 int type = flock_translate_cmd(cmd);
316 if (type < 0)
317 return type;
318
319 fl = locks_alloc_lock();
320 if (fl == NULL)
321 return -ENOMEM;
322
323 fl->fl_file = filp;
324 fl->fl_pid = current->tgid;
325 fl->fl_flags = FL_FLOCK;
326 fl->fl_type = type;
327 fl->fl_end = OFFSET_MAX;
328
329 *lock = fl;
330 return 0;
331}
332
0ec4f431 333static int assign_type(struct file_lock *fl, long type)
1da177e4
LT
334{
335 switch (type) {
336 case F_RDLCK:
337 case F_WRLCK:
338 case F_UNLCK:
339 fl->fl_type = type;
340 break;
341 default:
342 return -EINVAL;
343 }
344 return 0;
345}
346
ef12e72a
BF
347static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
348 struct flock64 *l)
1da177e4 349{
1da177e4 350 switch (l->l_whence) {
f5579f8c 351 case SEEK_SET:
ef12e72a 352 fl->fl_start = 0;
1da177e4 353 break;
f5579f8c 354 case SEEK_CUR:
ef12e72a 355 fl->fl_start = filp->f_pos;
1da177e4 356 break;
f5579f8c 357 case SEEK_END:
ef12e72a 358 fl->fl_start = i_size_read(file_inode(filp));
1da177e4
LT
359 break;
360 default:
361 return -EINVAL;
362 }
ef12e72a
BF
363 if (l->l_start > OFFSET_MAX - fl->fl_start)
364 return -EOVERFLOW;
365 fl->fl_start += l->l_start;
366 if (fl->fl_start < 0)
367 return -EINVAL;
1da177e4
LT
368
369 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
370 POSIX-2001 defines it. */
4c780a46 371 if (l->l_len > 0) {
ef12e72a
BF
372 if (l->l_len - 1 > OFFSET_MAX - fl->fl_start)
373 return -EOVERFLOW;
374 fl->fl_end = fl->fl_start + l->l_len - 1;
375
4c780a46 376 } else if (l->l_len < 0) {
ef12e72a 377 if (fl->fl_start + l->l_len < 0)
4c780a46 378 return -EINVAL;
ef12e72a
BF
379 fl->fl_end = fl->fl_start - 1;
380 fl->fl_start += l->l_len;
381 } else
382 fl->fl_end = OFFSET_MAX;
383
1da177e4
LT
384 fl->fl_owner = current->files;
385 fl->fl_pid = current->tgid;
386 fl->fl_file = filp;
387 fl->fl_flags = FL_POSIX;
388 fl->fl_ops = NULL;
389 fl->fl_lmops = NULL;
390
391 return assign_type(fl, l->l_type);
392}
393
ef12e72a
BF
394/* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
395 * style lock.
396 */
397static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
398 struct flock *l)
1da177e4 399{
ef12e72a
BF
400 struct flock64 ll = {
401 .l_type = l->l_type,
402 .l_whence = l->l_whence,
403 .l_start = l->l_start,
404 .l_len = l->l_len,
405 };
406
407 return flock64_to_posix_lock(filp, fl, &ll);
1da177e4 408}
1da177e4
LT
409
410/* default lease lock manager operations */
411static void lease_break_callback(struct file_lock *fl)
412{
413 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
414}
415
7b021967 416static const struct lock_manager_operations lease_manager_ops = {
8fb47a4f 417 .lm_break = lease_break_callback,
8fb47a4f 418 .lm_change = lease_modify,
1da177e4
LT
419};
420
421/*
422 * Initialize a lease, use the default lock manager operations
423 */
0ec4f431 424static int lease_init(struct file *filp, long type, struct file_lock *fl)
1da177e4 425 {
75dff55a
TM
426 if (assign_type(fl, type) != 0)
427 return -EINVAL;
428
1da177e4
LT
429 fl->fl_owner = current->files;
430 fl->fl_pid = current->tgid;
431
432 fl->fl_file = filp;
433 fl->fl_flags = FL_LEASE;
1da177e4
LT
434 fl->fl_start = 0;
435 fl->fl_end = OFFSET_MAX;
436 fl->fl_ops = NULL;
437 fl->fl_lmops = &lease_manager_ops;
438 return 0;
439}
440
441/* Allocate a file_lock initialised to this type of lease */
0ec4f431 442static struct file_lock *lease_alloc(struct file *filp, long type)
1da177e4
LT
443{
444 struct file_lock *fl = locks_alloc_lock();
75dff55a 445 int error = -ENOMEM;
1da177e4
LT
446
447 if (fl == NULL)
e32b8ee2 448 return ERR_PTR(error);
1da177e4
LT
449
450 error = lease_init(filp, type, fl);
75dff55a
TM
451 if (error) {
452 locks_free_lock(fl);
e32b8ee2 453 return ERR_PTR(error);
75dff55a 454 }
e32b8ee2 455 return fl;
1da177e4
LT
456}
457
458/* Check if two locks overlap each other.
459 */
460static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
461{
462 return ((fl1->fl_end >= fl2->fl_start) &&
463 (fl2->fl_end >= fl1->fl_start));
464}
465
466/*
467 * Check whether two locks have the same owner.
468 */
33443c42 469static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
1da177e4 470{
8fb47a4f 471 if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
1da177e4 472 return fl2->fl_lmops == fl1->fl_lmops &&
8fb47a4f 473 fl1->fl_lmops->lm_compare_owner(fl1, fl2);
1da177e4
LT
474 return fl1->fl_owner == fl2->fl_owner;
475}
476
7012b02a 477/* Must be called with the i_lock held! */
6ca10ed8 478static void locks_insert_global_locks(struct file_lock *fl)
88974691 479{
7012b02a
JL
480 lg_local_lock(&file_lock_lglock);
481 fl->fl_link_cpu = smp_processor_id();
482 hlist_add_head(&fl->fl_link, this_cpu_ptr(&file_lock_list));
483 lg_local_unlock(&file_lock_lglock);
88974691
JL
484}
485
7012b02a 486/* Must be called with the i_lock held! */
6ca10ed8 487static void locks_delete_global_locks(struct file_lock *fl)
88974691 488{
7012b02a
JL
489 /*
490 * Avoid taking lock if already unhashed. This is safe since this check
491 * is done while holding the i_lock, and new insertions into the list
492 * also require that it be held.
493 */
494 if (hlist_unhashed(&fl->fl_link))
495 return;
496 lg_local_lock_cpu(&file_lock_lglock, fl->fl_link_cpu);
139ca04e 497 hlist_del_init(&fl->fl_link);
7012b02a 498 lg_local_unlock_cpu(&file_lock_lglock, fl->fl_link_cpu);
88974691
JL
499}
500
3999e493
JL
501static unsigned long
502posix_owner_key(struct file_lock *fl)
503{
504 if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
505 return fl->fl_lmops->lm_owner_key(fl);
506 return (unsigned long)fl->fl_owner;
507}
508
6ca10ed8 509static void locks_insert_global_blocked(struct file_lock *waiter)
88974691 510{
3999e493 511 hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
88974691
JL
512}
513
6ca10ed8 514static void locks_delete_global_blocked(struct file_lock *waiter)
88974691 515{
48f74186 516 hash_del(&waiter->fl_link);
88974691
JL
517}
518
1da177e4
LT
519/* Remove waiter from blocker's block list.
520 * When blocker ends up pointing to itself then the list is empty.
1c8c601a 521 *
7b2296af 522 * Must be called with blocked_lock_lock held.
1da177e4 523 */
33443c42 524static void __locks_delete_block(struct file_lock *waiter)
1da177e4 525{
88974691 526 locks_delete_global_blocked(waiter);
1da177e4 527 list_del_init(&waiter->fl_block);
1da177e4
LT
528 waiter->fl_next = NULL;
529}
530
1a9e64a7 531static void locks_delete_block(struct file_lock *waiter)
1da177e4 532{
7b2296af 533 spin_lock(&blocked_lock_lock);
1da177e4 534 __locks_delete_block(waiter);
7b2296af 535 spin_unlock(&blocked_lock_lock);
1da177e4
LT
536}
537
538/* Insert waiter into blocker's block list.
539 * We use a circular list so that processes can be easily woken up in
540 * the order they blocked. The documentation doesn't require this but
541 * it seems like the reasonable thing to do.
1c8c601a 542 *
7b2296af 543 * Must be called with both the i_lock and blocked_lock_lock held. The fl_block
46dad760 544 * list itself is protected by the blocked_lock_lock, but by ensuring that the
7b2296af 545 * i_lock is also held on insertions we can avoid taking the blocked_lock_lock
4e8c765d 546 * in some cases when we see that the fl_block list is empty.
1da177e4 547 */
1c8c601a
JL
548static void __locks_insert_block(struct file_lock *blocker,
549 struct file_lock *waiter)
1da177e4 550{
6dc0fe8f 551 BUG_ON(!list_empty(&waiter->fl_block));
1da177e4 552 waiter->fl_next = blocker;
88974691 553 list_add_tail(&waiter->fl_block, &blocker->fl_block);
1da177e4 554 if (IS_POSIX(blocker))
1c8c601a
JL
555 locks_insert_global_blocked(waiter);
556}
557
558/* Must be called with i_lock held. */
559static void locks_insert_block(struct file_lock *blocker,
560 struct file_lock *waiter)
561{
7b2296af 562 spin_lock(&blocked_lock_lock);
1c8c601a 563 __locks_insert_block(blocker, waiter);
7b2296af 564 spin_unlock(&blocked_lock_lock);
1da177e4
LT
565}
566
1cb36012
JL
567/*
568 * Wake up processes blocked waiting for blocker.
569 *
1c8c601a 570 * Must be called with the inode->i_lock held!
1da177e4
LT
571 */
572static void locks_wake_up_blocks(struct file_lock *blocker)
573{
4e8c765d
JL
574 /*
575 * Avoid taking global lock if list is empty. This is safe since new
576 * blocked requests are only added to the list under the i_lock, and
577 * the i_lock is always held here. Note that removal from the fl_block
578 * list does not require the i_lock, so we must recheck list_empty()
7b2296af 579 * after acquiring the blocked_lock_lock.
4e8c765d
JL
580 */
581 if (list_empty(&blocker->fl_block))
582 return;
583
7b2296af 584 spin_lock(&blocked_lock_lock);
1da177e4 585 while (!list_empty(&blocker->fl_block)) {
f0c1cd0e
PE
586 struct file_lock *waiter;
587
588 waiter = list_first_entry(&blocker->fl_block,
1da177e4
LT
589 struct file_lock, fl_block);
590 __locks_delete_block(waiter);
8fb47a4f
BF
591 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
592 waiter->fl_lmops->lm_notify(waiter);
1da177e4
LT
593 else
594 wake_up(&waiter->fl_wait);
595 }
7b2296af 596 spin_unlock(&blocked_lock_lock);
1da177e4
LT
597}
598
599/* Insert file lock fl into an inode's lock list at the position indicated
600 * by pos. At the same time add the lock to the global file lock list.
1c8c601a
JL
601 *
602 * Must be called with the i_lock held!
1da177e4
LT
603 */
604static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
605{
ab1f1611
VG
606 fl->fl_nspid = get_pid(task_tgid(current));
607
1da177e4
LT
608 /* insert into file's list */
609 fl->fl_next = *pos;
610 *pos = fl;
88974691
JL
611
612 locks_insert_global_locks(fl);
1da177e4
LT
613}
614
24cbe784
JL
615/**
616 * locks_delete_lock - Delete a lock and then free it.
617 * @thisfl_p: pointer that points to the fl_next field of the previous
618 * inode->i_flock list entry
619 *
620 * Unlink a lock from all lists and free the namespace reference, but don't
621 * free it yet. Wake up processes that are blocked waiting for this lock and
622 * notify the FS that the lock has been cleared.
1c8c601a
JL
623 *
624 * Must be called with the i_lock held!
1da177e4 625 */
24cbe784 626static void locks_unlink_lock(struct file_lock **thisfl_p)
1da177e4
LT
627{
628 struct file_lock *fl = *thisfl_p;
629
88974691
JL
630 locks_delete_global_locks(fl);
631
1da177e4
LT
632 *thisfl_p = fl->fl_next;
633 fl->fl_next = NULL;
1da177e4 634
ab1f1611
VG
635 if (fl->fl_nspid) {
636 put_pid(fl->fl_nspid);
637 fl->fl_nspid = NULL;
638 }
639
1da177e4 640 locks_wake_up_blocks(fl);
24cbe784
JL
641}
642
643/*
644 * Unlink a lock from all lists and free it.
645 *
646 * Must be called with i_lock held!
647 */
648static void locks_delete_lock(struct file_lock **thisfl_p)
649{
650 struct file_lock *fl = *thisfl_p;
651
652 locks_unlink_lock(thisfl_p);
1da177e4
LT
653 locks_free_lock(fl);
654}
655
656/* Determine if lock sys_fl blocks lock caller_fl. Common functionality
657 * checks for shared/exclusive status of overlapping locks.
658 */
659static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
660{
661 if (sys_fl->fl_type == F_WRLCK)
662 return 1;
663 if (caller_fl->fl_type == F_WRLCK)
664 return 1;
665 return 0;
666}
667
668/* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
669 * checking before calling the locks_conflict().
670 */
671static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
672{
673 /* POSIX locks owned by the same process do not conflict with
674 * each other.
675 */
676 if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
677 return (0);
678
679 /* Check whether they overlap */
680 if (!locks_overlap(caller_fl, sys_fl))
681 return 0;
682
683 return (locks_conflict(caller_fl, sys_fl));
684}
685
686/* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
687 * checking before calling the locks_conflict().
688 */
689static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
690{
691 /* FLOCK locks referring to the same filp do not conflict with
692 * each other.
693 */
694 if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
695 return (0);
696 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
697 return 0;
698
699 return (locks_conflict(caller_fl, sys_fl));
700}
701
6d34ac19 702void
9d6a8c5c 703posix_test_lock(struct file *filp, struct file_lock *fl)
1da177e4
LT
704{
705 struct file_lock *cfl;
1c8c601a 706 struct inode *inode = file_inode(filp);
1da177e4 707
1c8c601a 708 spin_lock(&inode->i_lock);
496ad9aa 709 for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
1da177e4
LT
710 if (!IS_POSIX(cfl))
711 continue;
b842e240 712 if (posix_locks_conflict(fl, cfl))
1da177e4
LT
713 break;
714 }
ab1f1611 715 if (cfl) {
9d6a8c5c 716 __locks_copy_lock(fl, cfl);
ab1f1611 717 if (cfl->fl_nspid)
6c5f3e7b 718 fl->fl_pid = pid_vnr(cfl->fl_nspid);
ab1f1611 719 } else
129a84de 720 fl->fl_type = F_UNLCK;
1c8c601a 721 spin_unlock(&inode->i_lock);
6d34ac19 722 return;
1da177e4 723}
1da177e4
LT
724EXPORT_SYMBOL(posix_test_lock);
725
b533184f
BF
726/*
727 * Deadlock detection:
728 *
729 * We attempt to detect deadlocks that are due purely to posix file
730 * locks.
1da177e4 731 *
b533184f
BF
732 * We assume that a task can be waiting for at most one lock at a time.
733 * So for any acquired lock, the process holding that lock may be
734 * waiting on at most one other lock. That lock in turns may be held by
735 * someone waiting for at most one other lock. Given a requested lock
736 * caller_fl which is about to wait for a conflicting lock block_fl, we
737 * follow this chain of waiters to ensure we are not about to create a
738 * cycle.
1da177e4 739 *
b533184f
BF
740 * Since we do this before we ever put a process to sleep on a lock, we
741 * are ensured that there is never a cycle; that is what guarantees that
742 * the while() loop in posix_locks_deadlock() eventually completes.
97855b49 743 *
b533184f
BF
744 * Note: the above assumption may not be true when handling lock
745 * requests from a broken NFS client. It may also fail in the presence
746 * of tasks (such as posix threads) sharing the same open file table.
747 *
748 * To handle those cases, we just bail out after a few iterations.
1da177e4 749 */
97855b49
BF
750
751#define MAX_DEADLK_ITERATIONS 10
752
b533184f
BF
753/* Find a lock that the owner of the given block_fl is blocking on. */
754static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
755{
756 struct file_lock *fl;
757
3999e493 758 hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
b533184f
BF
759 if (posix_same_owner(fl, block_fl))
760 return fl->fl_next;
761 }
762 return NULL;
763}
764
7b2296af 765/* Must be called with the blocked_lock_lock held! */
b0904e14 766static int posix_locks_deadlock(struct file_lock *caller_fl,
1da177e4
LT
767 struct file_lock *block_fl)
768{
97855b49 769 int i = 0;
1da177e4 770
b533184f
BF
771 while ((block_fl = what_owner_is_waiting_for(block_fl))) {
772 if (i++ > MAX_DEADLK_ITERATIONS)
773 return 0;
774 if (posix_same_owner(caller_fl, block_fl))
775 return 1;
1da177e4
LT
776 }
777 return 0;
778}
779
1da177e4 780/* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
02888f41 781 * after any leases, but before any posix locks.
f475ae95
TM
782 *
783 * Note that if called with an FL_EXISTS argument, the caller may determine
784 * whether or not a lock was successfully freed by testing the return
785 * value for -ENOENT.
1da177e4 786 */
993dfa87 787static int flock_lock_file(struct file *filp, struct file_lock *request)
1da177e4 788{
993dfa87 789 struct file_lock *new_fl = NULL;
1da177e4 790 struct file_lock **before;
496ad9aa 791 struct inode * inode = file_inode(filp);
1da177e4
LT
792 int error = 0;
793 int found = 0;
794
b89f4321 795 if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
84d535ad 796 new_fl = locks_alloc_lock();
b89f4321
AB
797 if (!new_fl)
798 return -ENOMEM;
84d535ad
PE
799 }
800
1c8c601a 801 spin_lock(&inode->i_lock);
b89f4321
AB
802 if (request->fl_flags & FL_ACCESS)
803 goto find_conflict;
804
1da177e4
LT
805 for_each_lock(inode, before) {
806 struct file_lock *fl = *before;
807 if (IS_POSIX(fl))
808 break;
809 if (IS_LEASE(fl))
810 continue;
811 if (filp != fl->fl_file)
812 continue;
993dfa87 813 if (request->fl_type == fl->fl_type)
1da177e4
LT
814 goto out;
815 found = 1;
816 locks_delete_lock(before);
817 break;
818 }
1da177e4 819
f475ae95
TM
820 if (request->fl_type == F_UNLCK) {
821 if ((request->fl_flags & FL_EXISTS) && !found)
822 error = -ENOENT;
993dfa87 823 goto out;
f475ae95 824 }
1da177e4
LT
825
826 /*
827 * If a higher-priority process was blocked on the old file lock,
828 * give it the opportunity to lock the file.
829 */
b89f4321 830 if (found) {
1c8c601a 831 spin_unlock(&inode->i_lock);
def01bc5 832 cond_resched();
1c8c601a 833 spin_lock(&inode->i_lock);
b89f4321 834 }
1da177e4 835
f07f18dd 836find_conflict:
1da177e4
LT
837 for_each_lock(inode, before) {
838 struct file_lock *fl = *before;
839 if (IS_POSIX(fl))
840 break;
841 if (IS_LEASE(fl))
842 continue;
993dfa87 843 if (!flock_locks_conflict(request, fl))
1da177e4
LT
844 continue;
845 error = -EAGAIN;
bde74e4b
MS
846 if (!(request->fl_flags & FL_SLEEP))
847 goto out;
848 error = FILE_LOCK_DEFERRED;
849 locks_insert_block(fl, request);
1da177e4
LT
850 goto out;
851 }
f07f18dd
TM
852 if (request->fl_flags & FL_ACCESS)
853 goto out;
993dfa87 854 locks_copy_lock(new_fl, request);
0e2f6db8 855 locks_insert_lock(before, new_fl);
993dfa87 856 new_fl = NULL;
9cedc194 857 error = 0;
1da177e4
LT
858
859out:
1c8c601a 860 spin_unlock(&inode->i_lock);
993dfa87
TM
861 if (new_fl)
862 locks_free_lock(new_fl);
1da177e4
LT
863 return error;
864}
865
150b3934 866static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
1da177e4
LT
867{
868 struct file_lock *fl;
39005d02
MS
869 struct file_lock *new_fl = NULL;
870 struct file_lock *new_fl2 = NULL;
1da177e4
LT
871 struct file_lock *left = NULL;
872 struct file_lock *right = NULL;
873 struct file_lock **before;
b9746ef8
JL
874 int error;
875 bool added = false;
1da177e4
LT
876
877 /*
878 * We may need two file_lock structures for this operation,
879 * so we get them in advance to avoid races.
39005d02
MS
880 *
881 * In some cases we can be sure, that no new locks will be needed
1da177e4 882 */
39005d02
MS
883 if (!(request->fl_flags & FL_ACCESS) &&
884 (request->fl_type != F_UNLCK ||
885 request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
886 new_fl = locks_alloc_lock();
887 new_fl2 = locks_alloc_lock();
888 }
1da177e4 889
1c8c601a 890 spin_lock(&inode->i_lock);
1cb36012
JL
891 /*
892 * New lock request. Walk all POSIX locks and look for conflicts. If
893 * there are any, either return error or put the request on the
48f74186 894 * blocker's list of waiters and the global blocked_hash.
1cb36012 895 */
1da177e4
LT
896 if (request->fl_type != F_UNLCK) {
897 for_each_lock(inode, before) {
526985b9 898 fl = *before;
1da177e4
LT
899 if (!IS_POSIX(fl))
900 continue;
901 if (!posix_locks_conflict(request, fl))
902 continue;
5842add2 903 if (conflock)
1a747ee0 904 __locks_copy_lock(conflock, fl);
1da177e4
LT
905 error = -EAGAIN;
906 if (!(request->fl_flags & FL_SLEEP))
907 goto out;
1c8c601a
JL
908 /*
909 * Deadlock detection and insertion into the blocked
910 * locks list must be done while holding the same lock!
911 */
1da177e4 912 error = -EDEADLK;
7b2296af 913 spin_lock(&blocked_lock_lock);
1c8c601a
JL
914 if (likely(!posix_locks_deadlock(request, fl))) {
915 error = FILE_LOCK_DEFERRED;
916 __locks_insert_block(fl, request);
917 }
7b2296af 918 spin_unlock(&blocked_lock_lock);
1da177e4
LT
919 goto out;
920 }
921 }
922
923 /* If we're just looking for a conflict, we're done. */
924 error = 0;
925 if (request->fl_flags & FL_ACCESS)
926 goto out;
927
1da177e4 928 /*
1da177e4
LT
929 * Find the first old lock with the same owner as the new lock.
930 */
931
932 before = &inode->i_flock;
933
934 /* First skip locks owned by other processes. */
935 while ((fl = *before) && (!IS_POSIX(fl) ||
936 !posix_same_owner(request, fl))) {
937 before = &fl->fl_next;
938 }
939
1cb36012 940 /* Process locks with this owner. */
1da177e4
LT
941 while ((fl = *before) && posix_same_owner(request, fl)) {
942 /* Detect adjacent or overlapping regions (if same lock type)
943 */
944 if (request->fl_type == fl->fl_type) {
449231d6
OK
945 /* In all comparisons of start vs end, use
946 * "start - 1" rather than "end + 1". If end
947 * is OFFSET_MAX, end + 1 will become negative.
948 */
1da177e4
LT
949 if (fl->fl_end < request->fl_start - 1)
950 goto next_lock;
951 /* If the next lock in the list has entirely bigger
952 * addresses than the new one, insert the lock here.
953 */
449231d6 954 if (fl->fl_start - 1 > request->fl_end)
1da177e4
LT
955 break;
956
957 /* If we come here, the new and old lock are of the
958 * same type and adjacent or overlapping. Make one
959 * lock yielding from the lower start address of both
960 * locks to the higher end address.
961 */
962 if (fl->fl_start > request->fl_start)
963 fl->fl_start = request->fl_start;
964 else
965 request->fl_start = fl->fl_start;
966 if (fl->fl_end < request->fl_end)
967 fl->fl_end = request->fl_end;
968 else
969 request->fl_end = fl->fl_end;
970 if (added) {
971 locks_delete_lock(before);
972 continue;
973 }
974 request = fl;
b9746ef8 975 added = true;
1da177e4
LT
976 }
977 else {
978 /* Processing for different lock types is a bit
979 * more complex.
980 */
981 if (fl->fl_end < request->fl_start)
982 goto next_lock;
983 if (fl->fl_start > request->fl_end)
984 break;
985 if (request->fl_type == F_UNLCK)
b9746ef8 986 added = true;
1da177e4
LT
987 if (fl->fl_start < request->fl_start)
988 left = fl;
989 /* If the next lock in the list has a higher end
990 * address than the new one, insert the new one here.
991 */
992 if (fl->fl_end > request->fl_end) {
993 right = fl;
994 break;
995 }
996 if (fl->fl_start >= request->fl_start) {
997 /* The new lock completely replaces an old
998 * one (This may happen several times).
999 */
1000 if (added) {
1001 locks_delete_lock(before);
1002 continue;
1003 }
1004 /* Replace the old lock with the new one.
1005 * Wake up anybody waiting for the old one,
1006 * as the change in lock type might satisfy
1007 * their needs.
1008 */
1009 locks_wake_up_blocks(fl);
1010 fl->fl_start = request->fl_start;
1011 fl->fl_end = request->fl_end;
1012 fl->fl_type = request->fl_type;
47831f35
TM
1013 locks_release_private(fl);
1014 locks_copy_private(fl, request);
1da177e4 1015 request = fl;
b9746ef8 1016 added = true;
1da177e4
LT
1017 }
1018 }
1019 /* Go on to next lock.
1020 */
1021 next_lock:
1022 before = &fl->fl_next;
1023 }
1024
0d9a490a 1025 /*
1cb36012
JL
1026 * The above code only modifies existing locks in case of merging or
1027 * replacing. If new lock(s) need to be inserted all modifications are
1028 * done below this, so it's safe yet to bail out.
0d9a490a
MS
1029 */
1030 error = -ENOLCK; /* "no luck" */
1031 if (right && left == right && !new_fl2)
1032 goto out;
1033
1da177e4
LT
1034 error = 0;
1035 if (!added) {
f475ae95
TM
1036 if (request->fl_type == F_UNLCK) {
1037 if (request->fl_flags & FL_EXISTS)
1038 error = -ENOENT;
1da177e4 1039 goto out;
f475ae95 1040 }
0d9a490a
MS
1041
1042 if (!new_fl) {
1043 error = -ENOLCK;
1044 goto out;
1045 }
1da177e4
LT
1046 locks_copy_lock(new_fl, request);
1047 locks_insert_lock(before, new_fl);
1048 new_fl = NULL;
1049 }
1050 if (right) {
1051 if (left == right) {
1052 /* The new lock breaks the old one in two pieces,
1053 * so we have to use the second new lock.
1054 */
1055 left = new_fl2;
1056 new_fl2 = NULL;
1057 locks_copy_lock(left, right);
1058 locks_insert_lock(before, left);
1059 }
1060 right->fl_start = request->fl_end + 1;
1061 locks_wake_up_blocks(right);
1062 }
1063 if (left) {
1064 left->fl_end = request->fl_start - 1;
1065 locks_wake_up_blocks(left);
1066 }
1067 out:
1c8c601a 1068 spin_unlock(&inode->i_lock);
1da177e4
LT
1069 /*
1070 * Free any unused locks.
1071 */
1072 if (new_fl)
1073 locks_free_lock(new_fl);
1074 if (new_fl2)
1075 locks_free_lock(new_fl2);
1076 return error;
1077}
1078
1079/**
1080 * posix_lock_file - Apply a POSIX-style lock to a file
1081 * @filp: The file to apply the lock to
1082 * @fl: The lock to be applied
150b3934 1083 * @conflock: Place to return a copy of the conflicting lock, if found.
1da177e4
LT
1084 *
1085 * Add a POSIX style lock to a file.
1086 * We merge adjacent & overlapping locks whenever possible.
1087 * POSIX locks are sorted by owner task, then by starting address
f475ae95
TM
1088 *
1089 * Note that if called with an FL_EXISTS argument, the caller may determine
1090 * whether or not a lock was successfully freed by testing the return
1091 * value for -ENOENT.
1da177e4 1092 */
150b3934 1093int posix_lock_file(struct file *filp, struct file_lock *fl,
5842add2
AA
1094 struct file_lock *conflock)
1095{
496ad9aa 1096 return __posix_lock_file(file_inode(filp), fl, conflock);
1da177e4 1097}
150b3934 1098EXPORT_SYMBOL(posix_lock_file);
1da177e4
LT
1099
1100/**
1101 * posix_lock_file_wait - Apply a POSIX-style lock to a file
1102 * @filp: The file to apply the lock to
1103 * @fl: The lock to be applied
1104 *
1105 * Add a POSIX style lock to a file.
1106 * We merge adjacent & overlapping locks whenever possible.
1107 * POSIX locks are sorted by owner task, then by starting address
1108 */
1109int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
1110{
1111 int error;
1112 might_sleep ();
1113 for (;;) {
150b3934 1114 error = posix_lock_file(filp, fl, NULL);
bde74e4b 1115 if (error != FILE_LOCK_DEFERRED)
1da177e4
LT
1116 break;
1117 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1118 if (!error)
1119 continue;
1120
1121 locks_delete_block(fl);
1122 break;
1123 }
1124 return error;
1125}
1126EXPORT_SYMBOL(posix_lock_file_wait);
1127
1128/**
1129 * locks_mandatory_locked - Check for an active lock
1130 * @inode: the file to check
1131 *
1132 * Searches the inode's list of locks to find any POSIX locks which conflict.
1133 * This function is called from locks_verify_locked() only.
1134 */
1135int locks_mandatory_locked(struct inode *inode)
1136{
1137 fl_owner_t owner = current->files;
1138 struct file_lock *fl;
1139
1140 /*
1141 * Search the lock list for this inode for any POSIX locks.
1142 */
1c8c601a 1143 spin_lock(&inode->i_lock);
1da177e4
LT
1144 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1145 if (!IS_POSIX(fl))
1146 continue;
1147 if (fl->fl_owner != owner)
1148 break;
1149 }
1c8c601a 1150 spin_unlock(&inode->i_lock);
1da177e4
LT
1151 return fl ? -EAGAIN : 0;
1152}
1153
1154/**
1155 * locks_mandatory_area - Check for a conflicting lock
1156 * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
1157 * for shared
1158 * @inode: the file to check
1159 * @filp: how the file was opened (if it was)
1160 * @offset: start of area to check
1161 * @count: length of area to check
1162 *
1163 * Searches the inode's list of locks to find any POSIX locks which conflict.
1164 * This function is called from rw_verify_area() and
1165 * locks_verify_truncate().
1166 */
1167int locks_mandatory_area(int read_write, struct inode *inode,
1168 struct file *filp, loff_t offset,
1169 size_t count)
1170{
1171 struct file_lock fl;
1172 int error;
1173
1174 locks_init_lock(&fl);
1175 fl.fl_owner = current->files;
1176 fl.fl_pid = current->tgid;
1177 fl.fl_file = filp;
1178 fl.fl_flags = FL_POSIX | FL_ACCESS;
1179 if (filp && !(filp->f_flags & O_NONBLOCK))
1180 fl.fl_flags |= FL_SLEEP;
1181 fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
1182 fl.fl_start = offset;
1183 fl.fl_end = offset + count - 1;
1184
1185 for (;;) {
150b3934 1186 error = __posix_lock_file(inode, &fl, NULL);
bde74e4b 1187 if (error != FILE_LOCK_DEFERRED)
1da177e4
LT
1188 break;
1189 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1190 if (!error) {
1191 /*
1192 * If we've been sleeping someone might have
1193 * changed the permissions behind our back.
1194 */
a16877ca 1195 if (__mandatory_lock(inode))
1da177e4
LT
1196 continue;
1197 }
1198
1199 locks_delete_block(&fl);
1200 break;
1201 }
1202
1203 return error;
1204}
1205
1206EXPORT_SYMBOL(locks_mandatory_area);
1207
778fc546
BF
1208static void lease_clear_pending(struct file_lock *fl, int arg)
1209{
1210 switch (arg) {
1211 case F_UNLCK:
1212 fl->fl_flags &= ~FL_UNLOCK_PENDING;
1213 /* fall through: */
1214 case F_RDLCK:
1215 fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1216 }
1217}
1218
1da177e4
LT
1219/* We already had a lease on this file; just change its type */
1220int lease_modify(struct file_lock **before, int arg)
1221{
1222 struct file_lock *fl = *before;
1223 int error = assign_type(fl, arg);
1224
1225 if (error)
1226 return error;
778fc546 1227 lease_clear_pending(fl, arg);
1da177e4 1228 locks_wake_up_blocks(fl);
3b6e2723
FB
1229 if (arg == F_UNLCK) {
1230 struct file *filp = fl->fl_file;
1231
1232 f_delown(filp);
1233 filp->f_owner.signum = 0;
96d6d59c
BF
1234 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
1235 if (fl->fl_fasync != NULL) {
1236 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
1237 fl->fl_fasync = NULL;
1238 }
1da177e4 1239 locks_delete_lock(before);
3b6e2723 1240 }
1da177e4
LT
1241 return 0;
1242}
1243
1244EXPORT_SYMBOL(lease_modify);
1245
778fc546
BF
1246static bool past_time(unsigned long then)
1247{
1248 if (!then)
1249 /* 0 is a special value meaning "this never expires": */
1250 return false;
1251 return time_after(jiffies, then);
1252}
1253
1da177e4
LT
1254static void time_out_leases(struct inode *inode)
1255{
1256 struct file_lock **before;
1257 struct file_lock *fl;
1258
1259 before = &inode->i_flock;
ab83fa4b 1260 while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
778fc546
BF
1261 if (past_time(fl->fl_downgrade_time))
1262 lease_modify(before, F_RDLCK);
1263 if (past_time(fl->fl_break_time))
1264 lease_modify(before, F_UNLCK);
1da177e4
LT
1265 if (fl == *before) /* lease_modify may have freed fl */
1266 before = &fl->fl_next;
1267 }
1268}
1269
df4e8d2c
BF
1270static bool leases_conflict(struct file_lock *lease, struct file_lock *breaker)
1271{
1272 if ((breaker->fl_flags & FL_DELEG) && (lease->fl_flags & FL_LEASE))
1273 return false;
1274 return locks_conflict(breaker, lease);
1275}
1276
1da177e4
LT
1277/**
1278 * __break_lease - revoke all outstanding leases on file
1279 * @inode: the inode of the file to return
df4e8d2c
BF
1280 * @mode: O_RDONLY: break only write leases; O_WRONLY or O_RDWR:
1281 * break all leases
1282 * @type: FL_LEASE: break leases and delegations; FL_DELEG: break
1283 * only delegations
1da177e4 1284 *
87250dd2 1285 * break_lease (inlined for speed) has checked there already is at least
1286 * some kind of lock (maybe a lease) on this file. Leases are broken on
1287 * a call to open() or truncate(). This function can sleep unless you
1da177e4
LT
1288 * specified %O_NONBLOCK to your open().
1289 */
df4e8d2c 1290int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
1da177e4 1291{
778fc546 1292 int error = 0;
1da177e4
LT
1293 struct file_lock *new_fl, *flock;
1294 struct file_lock *fl;
1da177e4
LT
1295 unsigned long break_time;
1296 int i_have_this_lease = 0;
df4e8d2c 1297 bool lease_conflict = false;
8737c930 1298 int want_write = (mode & O_ACCMODE) != O_RDONLY;
1da177e4 1299
8737c930 1300 new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
6d4b9e38
LT
1301 if (IS_ERR(new_fl))
1302 return PTR_ERR(new_fl);
df4e8d2c 1303 new_fl->fl_flags = type;
1da177e4 1304
1c8c601a 1305 spin_lock(&inode->i_lock);
1da177e4
LT
1306
1307 time_out_leases(inode);
1308
1309 flock = inode->i_flock;
1310 if ((flock == NULL) || !IS_LEASE(flock))
1311 goto out;
1312
df4e8d2c
BF
1313 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1314 if (leases_conflict(fl, new_fl)) {
1315 lease_conflict = true;
1316 if (fl->fl_owner == current->files)
1317 i_have_this_lease = 1;
1318 }
1319 }
1320 if (!lease_conflict)
778fc546
BF
1321 goto out;
1322
1da177e4
LT
1323 break_time = 0;
1324 if (lease_break_time > 0) {
1325 break_time = jiffies + lease_break_time * HZ;
1326 if (break_time == 0)
1327 break_time++; /* so that 0 means no break time */
1328 }
1329
1330 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
df4e8d2c
BF
1331 if (!leases_conflict(fl, new_fl))
1332 continue;
778fc546
BF
1333 if (want_write) {
1334 if (fl->fl_flags & FL_UNLOCK_PENDING)
1335 continue;
1336 fl->fl_flags |= FL_UNLOCK_PENDING;
1da177e4 1337 fl->fl_break_time = break_time;
778fc546
BF
1338 } else {
1339 if (lease_breaking(flock))
1340 continue;
1341 fl->fl_flags |= FL_DOWNGRADE_PENDING;
1342 fl->fl_downgrade_time = break_time;
1da177e4 1343 }
778fc546 1344 fl->fl_lmops->lm_break(fl);
1da177e4
LT
1345 }
1346
1347 if (i_have_this_lease || (mode & O_NONBLOCK)) {
1348 error = -EWOULDBLOCK;
1349 goto out;
1350 }
1351
1352restart:
1353 break_time = flock->fl_break_time;
1354 if (break_time != 0) {
1355 break_time -= jiffies;
1356 if (break_time == 0)
1357 break_time++;
1358 }
4321e01e 1359 locks_insert_block(flock, new_fl);
1c8c601a 1360 spin_unlock(&inode->i_lock);
4321e01e
MW
1361 error = wait_event_interruptible_timeout(new_fl->fl_wait,
1362 !new_fl->fl_next, break_time);
1c8c601a
JL
1363 spin_lock(&inode->i_lock);
1364 locks_delete_block(new_fl);
1da177e4
LT
1365 if (error >= 0) {
1366 if (error == 0)
1367 time_out_leases(inode);
778fc546
BF
1368 /*
1369 * Wait for the next conflicting lease that has not been
1370 * broken yet
1371 */
1da177e4
LT
1372 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1373 flock = flock->fl_next) {
df4e8d2c 1374 if (leases_conflict(new_fl, flock))
1da177e4
LT
1375 goto restart;
1376 }
1377 error = 0;
1378 }
1379
1380out:
1c8c601a 1381 spin_unlock(&inode->i_lock);
6d4b9e38 1382 locks_free_lock(new_fl);
1da177e4
LT
1383 return error;
1384}
1385
1386EXPORT_SYMBOL(__break_lease);
1387
1388/**
a6b91919 1389 * lease_get_mtime - get the last modified time of an inode
1da177e4
LT
1390 * @inode: the inode
1391 * @time: pointer to a timespec which will contain the last modified time
1392 *
1393 * This is to force NFS clients to flush their caches for files with
1394 * exclusive leases. The justification is that if someone has an
a6b91919 1395 * exclusive lease, then they could be modifying it.
1da177e4
LT
1396 */
1397void lease_get_mtime(struct inode *inode, struct timespec *time)
1398{
1399 struct file_lock *flock = inode->i_flock;
0ee5c6d6 1400 if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
1da177e4
LT
1401 *time = current_fs_time(inode->i_sb);
1402 else
1403 *time = inode->i_mtime;
1404}
1405
1406EXPORT_SYMBOL(lease_get_mtime);
1407
1408/**
1409 * fcntl_getlease - Enquire what lease is currently active
1410 * @filp: the file
1411 *
1412 * The value returned by this function will be one of
1413 * (if no lease break is pending):
1414 *
1415 * %F_RDLCK to indicate a shared lease is held.
1416 *
1417 * %F_WRLCK to indicate an exclusive lease is held.
1418 *
1419 * %F_UNLCK to indicate no lease is held.
1420 *
1421 * (if a lease break is pending):
1422 *
1423 * %F_RDLCK to indicate an exclusive lease needs to be
1424 * changed to a shared lease (or removed).
1425 *
1426 * %F_UNLCK to indicate the lease needs to be removed.
1427 *
1428 * XXX: sfr & willy disagree over whether F_INPROGRESS
1429 * should be returned to userspace.
1430 */
1431int fcntl_getlease(struct file *filp)
1432{
1433 struct file_lock *fl;
1c8c601a 1434 struct inode *inode = file_inode(filp);
1da177e4
LT
1435 int type = F_UNLCK;
1436
1c8c601a 1437 spin_lock(&inode->i_lock);
496ad9aa
AV
1438 time_out_leases(file_inode(filp));
1439 for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
1da177e4
LT
1440 fl = fl->fl_next) {
1441 if (fl->fl_file == filp) {
778fc546 1442 type = target_leasetype(fl);
1da177e4
LT
1443 break;
1444 }
1445 }
1c8c601a 1446 spin_unlock(&inode->i_lock);
1da177e4
LT
1447 return type;
1448}
1449
24cbe784
JL
1450/**
1451 * check_conflicting_open - see if the given dentry points to a file that has
1452 * an existing open that would conflict with the
1453 * desired lease.
1454 * @dentry: dentry to check
1455 * @arg: type of lease that we're trying to acquire
1456 *
1457 * Check to see if there's an existing open fd on this file that would
1458 * conflict with the lease we're trying to set.
1459 */
1460static int
1461check_conflicting_open(const struct dentry *dentry, const long arg)
1462{
1463 int ret = 0;
1464 struct inode *inode = dentry->d_inode;
1465
1466 if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
1467 return -EAGAIN;
1468
1469 if ((arg == F_WRLCK) && ((d_count(dentry) > 1) ||
1470 (atomic_read(&inode->i_count) > 1)))
1471 ret = -EAGAIN;
1472
1473 return ret;
1474}
1475
d4f22d19 1476static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
1da177e4 1477{
7eaae282 1478 struct file_lock *fl, **before, **my_before = NULL, *lease;
0f7fc9e4 1479 struct dentry *dentry = filp->f_path.dentry;
1da177e4 1480 struct inode *inode = dentry->d_inode;
df4e8d2c 1481 bool is_deleg = (*flp)->fl_flags & FL_DELEG;
c1f24ef4 1482 int error;
1da177e4 1483
096657b6 1484 lease = *flp;
df4e8d2c
BF
1485 /*
1486 * In the delegation case we need mutual exclusion with
1487 * a number of operations that take the i_mutex. We trylock
1488 * because delegations are an optional optimization, and if
1489 * there's some chance of a conflict--we'd rather not
1490 * bother, maybe that's a sign this just isn't a good file to
1491 * hand out a delegation on.
1492 */
1493 if (is_deleg && !mutex_trylock(&inode->i_mutex))
1494 return -EAGAIN;
1495
1496 if (is_deleg && arg == F_WRLCK) {
1497 /* Write delegations are not currently supported: */
4fdb793f 1498 mutex_unlock(&inode->i_mutex);
df4e8d2c
BF
1499 WARN_ON_ONCE(1);
1500 return -EINVAL;
1501 }
096657b6 1502
24cbe784
JL
1503 error = check_conflicting_open(dentry, arg);
1504 if (error)
096657b6 1505 goto out;
6d5e8b05 1506
1da177e4
LT
1507 /*
1508 * At this point, we know that if there is an exclusive
1509 * lease on this file, then we hold it on this filp
1510 * (otherwise our open of this file would have blocked).
1511 * And if we are trying to acquire an exclusive lease,
1512 * then the file is not open by anyone (including us)
1513 * except for this filp.
1514 */
c1f24ef4 1515 error = -EAGAIN;
1da177e4
LT
1516 for (before = &inode->i_flock;
1517 ((fl = *before) != NULL) && IS_LEASE(fl);
1518 before = &fl->fl_next) {
c1f24ef4 1519 if (fl->fl_file == filp) {
1da177e4 1520 my_before = before;
c1f24ef4
BF
1521 continue;
1522 }
1523 /*
1524 * No exclusive leases if someone else has a lease on
1525 * this file:
1526 */
1527 if (arg == F_WRLCK)
1528 goto out;
1529 /*
1530 * Modifying our existing lease is OK, but no getting a
1531 * new lease if someone else is opening for write:
1532 */
1533 if (fl->fl_flags & FL_UNLOCK_PENDING)
1534 goto out;
1da177e4
LT
1535 }
1536
1da177e4 1537 if (my_before != NULL) {
8fb47a4f 1538 error = lease->fl_lmops->lm_change(my_before, arg);
51ee4b84
CH
1539 if (!error)
1540 *flp = *my_before;
1da177e4
LT
1541 goto out;
1542 }
1543
1da177e4
LT
1544 error = -EINVAL;
1545 if (!leases_enable)
1546 goto out;
1547
c5b1f0d9 1548 locks_insert_lock(before, lease);
24cbe784
JL
1549 /*
1550 * The check in break_lease() is lockless. It's possible for another
1551 * open to race in after we did the earlier check for a conflicting
1552 * open but before the lease was inserted. Check again for a
1553 * conflicting open and cancel the lease if there is one.
1554 *
1555 * We also add a barrier here to ensure that the insertion of the lock
1556 * precedes these checks.
1557 */
1558 smp_mb();
1559 error = check_conflicting_open(dentry, arg);
1560 if (error)
1561 locks_unlink_lock(flp);
1da177e4 1562out:
df4e8d2c
BF
1563 if (is_deleg)
1564 mutex_unlock(&inode->i_mutex);
1da177e4
LT
1565 return error;
1566}
8335ebd9 1567
d4f22d19 1568static int generic_delete_lease(struct file *filp, struct file_lock **flp)
8335ebd9
BF
1569{
1570 struct file_lock *fl, **before;
1571 struct dentry *dentry = filp->f_path.dentry;
1572 struct inode *inode = dentry->d_inode;
1573
1574 for (before = &inode->i_flock;
1575 ((fl = *before) != NULL) && IS_LEASE(fl);
1576 before = &fl->fl_next) {
1577 if (fl->fl_file != filp)
1578 continue;
1579 return (*flp)->fl_lmops->lm_change(before, F_UNLCK);
1580 }
1581 return -EAGAIN;
1582}
1583
1584/**
1585 * generic_setlease - sets a lease on an open file
1586 * @filp: file pointer
1587 * @arg: type of lease to obtain
1588 * @flp: input - file_lock to use, output - file_lock inserted
1589 *
1590 * The (input) flp->fl_lmops->lm_break function is required
1591 * by break_lease().
1592 *
1c8c601a 1593 * Called with inode->i_lock held.
8335ebd9
BF
1594 */
1595int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
1596{
1597 struct dentry *dentry = filp->f_path.dentry;
1598 struct inode *inode = dentry->d_inode;
1599 int error;
1600
8e96e3b7 1601 if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
8335ebd9
BF
1602 return -EACCES;
1603 if (!S_ISREG(inode->i_mode))
1604 return -EINVAL;
1605 error = security_file_lock(filp, arg);
1606 if (error)
1607 return error;
1608
1609 time_out_leases(inode);
1610
1611 BUG_ON(!(*flp)->fl_lmops->lm_break);
1612
1613 switch (arg) {
1614 case F_UNLCK:
1615 return generic_delete_lease(filp, flp);
1616 case F_RDLCK:
1617 case F_WRLCK:
1618 return generic_add_lease(filp, arg, flp);
1619 default:
8d657eb3 1620 return -EINVAL;
8335ebd9
BF
1621 }
1622}
0af1a450 1623EXPORT_SYMBOL(generic_setlease);
1da177e4 1624
b89f4321
AB
1625static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1626{
72c2d531 1627 if (filp->f_op->setlease)
b89f4321
AB
1628 return filp->f_op->setlease(filp, arg, lease);
1629 else
1630 return generic_setlease(filp, arg, lease);
1631}
1632
1633/**
a9933cea 1634 * vfs_setlease - sets a lease on an open file
1da177e4
LT
1635 * @filp: file pointer
1636 * @arg: type of lease to obtain
1637 * @lease: file_lock to use
1638 *
1639 * Call this to establish a lease on the file.
8fb47a4f 1640 * The (*lease)->fl_lmops->lm_break operation must be set; if not,
f9ffed26
BF
1641 * break_lease will oops!
1642 *
1643 * This will call the filesystem's setlease file method, if
1644 * defined. Note that there is no getlease method; instead, the
1645 * filesystem setlease method should call back to setlease() to
1646 * add a lease to the inode's lease list, where fcntl_getlease() can
1647 * find it. Since fcntl_getlease() only reports whether the current
1648 * task holds a lease, a cluster filesystem need only do this for
1649 * leases held by processes on this node.
1650 *
1651 * There is also no break_lease method; filesystems that
c9404c9c 1652 * handle their own leases should break leases themselves from the
f9ffed26
BF
1653 * filesystem's open, create, and (on truncate) setattr methods.
1654 *
1655 * Warning: the only current setlease methods exist only to disable
1656 * leases in certain cases. More vfs changes may be required to
1657 * allow a full filesystem lease implementation.
1da177e4
LT
1658 */
1659
a9933cea 1660int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1da177e4 1661{
1c8c601a 1662 struct inode *inode = file_inode(filp);
1da177e4
LT
1663 int error;
1664
1c8c601a 1665 spin_lock(&inode->i_lock);
b89f4321 1666 error = __vfs_setlease(filp, arg, lease);
1c8c601a 1667 spin_unlock(&inode->i_lock);
1da177e4
LT
1668
1669 return error;
1670}
a9933cea 1671EXPORT_SYMBOL_GPL(vfs_setlease);
1da177e4 1672
0ceaf6c7
BF
1673static int do_fcntl_delete_lease(struct file *filp)
1674{
1675 struct file_lock fl, *flp = &fl;
1676
1677 lease_init(filp, F_UNLCK, flp);
1678
1679 return vfs_setlease(filp, F_UNLCK, &flp);
1680}
1681
1682static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
1da177e4 1683{
3df057ac 1684 struct file_lock *fl, *ret;
1c8c601a 1685 struct inode *inode = file_inode(filp);
f7347ce4 1686 struct fasync_struct *new;
1da177e4
LT
1687 int error;
1688
c5b1f0d9
AB
1689 fl = lease_alloc(filp, arg);
1690 if (IS_ERR(fl))
1691 return PTR_ERR(fl);
1da177e4 1692
f7347ce4
LT
1693 new = fasync_alloc();
1694 if (!new) {
1695 locks_free_lock(fl);
1696 return -ENOMEM;
1697 }
3df057ac 1698 ret = fl;
1c8c601a 1699 spin_lock(&inode->i_lock);
8896b93f 1700 error = __vfs_setlease(filp, arg, &ret);
51ee4b84 1701 if (error) {
1c8c601a 1702 spin_unlock(&inode->i_lock);
51ee4b84
CH
1703 locks_free_lock(fl);
1704 goto out_free_fasync;
1705 }
3df057ac
BF
1706 if (ret != fl)
1707 locks_free_lock(fl);
1da177e4 1708
f7347ce4
LT
1709 /*
1710 * fasync_insert_entry() returns the old entry if any.
1711 * If there was no old entry, then it used 'new' and
1712 * inserted it into the fasync list. Clear new so that
1713 * we don't release it here.
1714 */
3df057ac 1715 if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
f7347ce4
LT
1716 new = NULL;
1717
8896b93f 1718 error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
1c8c601a 1719 spin_unlock(&inode->i_lock);
51ee4b84
CH
1720
1721out_free_fasync:
f7347ce4
LT
1722 if (new)
1723 fasync_free(new);
1da177e4
LT
1724 return error;
1725}
1726
0ceaf6c7
BF
1727/**
1728 * fcntl_setlease - sets a lease on an open file
1729 * @fd: open file descriptor
1730 * @filp: file pointer
1731 * @arg: type of lease to obtain
1732 *
1733 * Call this fcntl to establish a lease on the file.
1734 * Note that you also need to call %F_SETSIG to
1735 * receive a signal when the lease is broken.
1736 */
1737int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1738{
1739 if (arg == F_UNLCK)
1740 return do_fcntl_delete_lease(filp);
1741 return do_fcntl_add_lease(fd, filp, arg);
1742}
1743
1da177e4
LT
1744/**
1745 * flock_lock_file_wait - Apply a FLOCK-style lock to a file
1746 * @filp: The file to apply the lock to
1747 * @fl: The lock to be applied
1748 *
1749 * Add a FLOCK style lock to a file.
1750 */
1751int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
1752{
1753 int error;
1754 might_sleep();
1755 for (;;) {
1756 error = flock_lock_file(filp, fl);
bde74e4b 1757 if (error != FILE_LOCK_DEFERRED)
1da177e4
LT
1758 break;
1759 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1760 if (!error)
1761 continue;
1762
1763 locks_delete_block(fl);
1764 break;
1765 }
1766 return error;
1767}
1768
1769EXPORT_SYMBOL(flock_lock_file_wait);
1770
1771/**
1772 * sys_flock: - flock() system call.
1773 * @fd: the file descriptor to lock.
1774 * @cmd: the type of lock to apply.
1775 *
1776 * Apply a %FL_FLOCK style lock to an open file descriptor.
1777 * The @cmd can be one of
1778 *
1779 * %LOCK_SH -- a shared lock.
1780 *
1781 * %LOCK_EX -- an exclusive lock.
1782 *
1783 * %LOCK_UN -- remove an existing lock.
1784 *
1785 * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes.
1786 *
1787 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1788 * processes read and write access respectively.
1789 */
002c8976 1790SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
1da177e4 1791{
2903ff01 1792 struct fd f = fdget(fd);
1da177e4
LT
1793 struct file_lock *lock;
1794 int can_sleep, unlock;
1795 int error;
1796
1797 error = -EBADF;
2903ff01 1798 if (!f.file)
1da177e4
LT
1799 goto out;
1800
1801 can_sleep = !(cmd & LOCK_NB);
1802 cmd &= ~LOCK_NB;
1803 unlock = (cmd == LOCK_UN);
1804
aeb5d727 1805 if (!unlock && !(cmd & LOCK_MAND) &&
2903ff01 1806 !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
1da177e4
LT
1807 goto out_putf;
1808
2903ff01 1809 error = flock_make_lock(f.file, &lock, cmd);
1da177e4
LT
1810 if (error)
1811 goto out_putf;
1812 if (can_sleep)
1813 lock->fl_flags |= FL_SLEEP;
1814
2903ff01 1815 error = security_file_lock(f.file, lock->fl_type);
1da177e4
LT
1816 if (error)
1817 goto out_free;
1818
72c2d531 1819 if (f.file->f_op->flock)
2903ff01 1820 error = f.file->f_op->flock(f.file,
1da177e4
LT
1821 (can_sleep) ? F_SETLKW : F_SETLK,
1822 lock);
1823 else
2903ff01 1824 error = flock_lock_file_wait(f.file, lock);
1da177e4
LT
1825
1826 out_free:
993dfa87 1827 locks_free_lock(lock);
1da177e4
LT
1828
1829 out_putf:
2903ff01 1830 fdput(f);
1da177e4
LT
1831 out:
1832 return error;
1833}
1834
3ee17abd
BF
1835/**
1836 * vfs_test_lock - test file byte range lock
1837 * @filp: The file to test lock for
6924c554 1838 * @fl: The lock to test; also used to hold result
3ee17abd
BF
1839 *
1840 * Returns -ERRNO on failure. Indicates presence of conflicting lock by
1841 * setting conf->fl_type to something other than F_UNLCK.
1842 */
1843int vfs_test_lock(struct file *filp, struct file_lock *fl)
1844{
72c2d531 1845 if (filp->f_op->lock)
3ee17abd
BF
1846 return filp->f_op->lock(filp, F_GETLK, fl);
1847 posix_test_lock(filp, fl);
1848 return 0;
1849}
1850EXPORT_SYMBOL_GPL(vfs_test_lock);
1851
c2fa1b8a
BF
1852static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
1853{
1854 flock->l_pid = fl->fl_pid;
1855#if BITS_PER_LONG == 32
1856 /*
1857 * Make sure we can represent the posix lock via
1858 * legacy 32bit flock.
1859 */
1860 if (fl->fl_start > OFFT_OFFSET_MAX)
1861 return -EOVERFLOW;
1862 if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
1863 return -EOVERFLOW;
1864#endif
1865 flock->l_start = fl->fl_start;
1866 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1867 fl->fl_end - fl->fl_start + 1;
1868 flock->l_whence = 0;
129a84de 1869 flock->l_type = fl->fl_type;
c2fa1b8a
BF
1870 return 0;
1871}
1872
1873#if BITS_PER_LONG == 32
1874static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
1875{
1876 flock->l_pid = fl->fl_pid;
1877 flock->l_start = fl->fl_start;
1878 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1879 fl->fl_end - fl->fl_start + 1;
1880 flock->l_whence = 0;
1881 flock->l_type = fl->fl_type;
1882}
1883#endif
1884
1da177e4
LT
1885/* Report the first existing lock that would conflict with l.
1886 * This implements the F_GETLK command of fcntl().
1887 */
1888int fcntl_getlk(struct file *filp, struct flock __user *l)
1889{
9d6a8c5c 1890 struct file_lock file_lock;
1da177e4
LT
1891 struct flock flock;
1892 int error;
1893
1894 error = -EFAULT;
1895 if (copy_from_user(&flock, l, sizeof(flock)))
1896 goto out;
1897 error = -EINVAL;
1898 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1899 goto out;
1900
1901 error = flock_to_posix_lock(filp, &file_lock, &flock);
1902 if (error)
1903 goto out;
1904
3ee17abd
BF
1905 error = vfs_test_lock(filp, &file_lock);
1906 if (error)
1907 goto out;
1da177e4 1908
9d6a8c5c
ME
1909 flock.l_type = file_lock.fl_type;
1910 if (file_lock.fl_type != F_UNLCK) {
1911 error = posix_lock_to_flock(&flock, &file_lock);
c2fa1b8a 1912 if (error)
1da177e4 1913 goto out;
1da177e4
LT
1914 }
1915 error = -EFAULT;
1916 if (!copy_to_user(l, &flock, sizeof(flock)))
1917 error = 0;
1918out:
1919 return error;
1920}
1921
7723ec97
ME
1922/**
1923 * vfs_lock_file - file byte range lock
1924 * @filp: The file to apply the lock to
1925 * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
1926 * @fl: The lock to be applied
150b3934
ME
1927 * @conf: Place to return a copy of the conflicting lock, if found.
1928 *
1929 * A caller that doesn't care about the conflicting lock may pass NULL
1930 * as the final argument.
1931 *
1932 * If the filesystem defines a private ->lock() method, then @conf will
1933 * be left unchanged; so a caller that cares should initialize it to
1934 * some acceptable default.
2beb6614
ME
1935 *
1936 * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
1937 * locks, the ->lock() interface may return asynchronously, before the lock has
1938 * been granted or denied by the underlying filesystem, if (and only if)
8fb47a4f 1939 * lm_grant is set. Callers expecting ->lock() to return asynchronously
2beb6614
ME
1940 * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
1941 * the request is for a blocking lock. When ->lock() does return asynchronously,
8fb47a4f 1942 * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
2beb6614
ME
1943 * request completes.
1944 * If the request is for non-blocking lock the file system should return
bde74e4b
MS
1945 * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
1946 * with the result. If the request timed out the callback routine will return a
2beb6614
ME
1947 * nonzero return code and the file system should release the lock. The file
1948 * system is also responsible to keep a corresponding posix lock when it
1949 * grants a lock so the VFS can find out which locks are locally held and do
1950 * the correct lock cleanup when required.
1951 * The underlying filesystem must not drop the kernel lock or call
8fb47a4f 1952 * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
2beb6614 1953 * return code.
7723ec97 1954 */
150b3934 1955int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
7723ec97 1956{
72c2d531 1957 if (filp->f_op->lock)
7723ec97
ME
1958 return filp->f_op->lock(filp, cmd, fl);
1959 else
150b3934 1960 return posix_lock_file(filp, fl, conf);
7723ec97
ME
1961}
1962EXPORT_SYMBOL_GPL(vfs_lock_file);
1963
b648a6de
MS
1964static int do_lock_file_wait(struct file *filp, unsigned int cmd,
1965 struct file_lock *fl)
1966{
1967 int error;
1968
1969 error = security_file_lock(filp, fl->fl_type);
1970 if (error)
1971 return error;
1972
764c76b3
MS
1973 for (;;) {
1974 error = vfs_lock_file(filp, cmd, fl, NULL);
1975 if (error != FILE_LOCK_DEFERRED)
b648a6de 1976 break;
764c76b3
MS
1977 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1978 if (!error)
1979 continue;
1980
1981 locks_delete_block(fl);
1982 break;
b648a6de
MS
1983 }
1984
1985 return error;
1986}
1987
1da177e4
LT
1988/* Apply the lock described by l to an open file descriptor.
1989 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1990 */
c293621b
PS
1991int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
1992 struct flock __user *l)
1da177e4
LT
1993{
1994 struct file_lock *file_lock = locks_alloc_lock();
1995 struct flock flock;
1996 struct inode *inode;
0b2bac2f 1997 struct file *f;
1da177e4
LT
1998 int error;
1999
2000 if (file_lock == NULL)
2001 return -ENOLCK;
2002
2003 /*
2004 * This might block, so we do it before checking the inode.
2005 */
2006 error = -EFAULT;
2007 if (copy_from_user(&flock, l, sizeof(flock)))
2008 goto out;
2009
496ad9aa 2010 inode = file_inode(filp);
1da177e4
LT
2011
2012 /* Don't allow mandatory locks on files that may be memory mapped
2013 * and shared.
2014 */
a16877ca 2015 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
1da177e4
LT
2016 error = -EAGAIN;
2017 goto out;
2018 }
2019
c293621b 2020again:
1da177e4
LT
2021 error = flock_to_posix_lock(filp, file_lock, &flock);
2022 if (error)
2023 goto out;
2024 if (cmd == F_SETLKW) {
2025 file_lock->fl_flags |= FL_SLEEP;
2026 }
2027
2028 error = -EBADF;
2029 switch (flock.l_type) {
2030 case F_RDLCK:
2031 if (!(filp->f_mode & FMODE_READ))
2032 goto out;
2033 break;
2034 case F_WRLCK:
2035 if (!(filp->f_mode & FMODE_WRITE))
2036 goto out;
2037 break;
2038 case F_UNLCK:
2039 break;
2040 default:
2041 error = -EINVAL;
2042 goto out;
2043 }
2044
b648a6de 2045 error = do_lock_file_wait(filp, cmd, file_lock);
1da177e4 2046
c293621b
PS
2047 /*
2048 * Attempt to detect a close/fcntl race and recover by
2049 * releasing the lock that was just acquired.
2050 */
0b2bac2f
AV
2051 /*
2052 * we need that spin_lock here - it prevents reordering between
2053 * update of inode->i_flock and check for it done in close().
2054 * rcu_read_lock() wouldn't do.
2055 */
2056 spin_lock(&current->files->file_lock);
2057 f = fcheck(fd);
2058 spin_unlock(&current->files->file_lock);
2059 if (!error && f != filp && flock.l_type != F_UNLCK) {
c293621b
PS
2060 flock.l_type = F_UNLCK;
2061 goto again;
1da177e4
LT
2062 }
2063
c293621b 2064out:
1da177e4
LT
2065 locks_free_lock(file_lock);
2066 return error;
2067}
2068
2069#if BITS_PER_LONG == 32
2070/* Report the first existing lock that would conflict with l.
2071 * This implements the F_GETLK command of fcntl().
2072 */
2073int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
2074{
9d6a8c5c 2075 struct file_lock file_lock;
1da177e4
LT
2076 struct flock64 flock;
2077 int error;
2078
2079 error = -EFAULT;
2080 if (copy_from_user(&flock, l, sizeof(flock)))
2081 goto out;
2082 error = -EINVAL;
2083 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
2084 goto out;
2085
2086 error = flock64_to_posix_lock(filp, &file_lock, &flock);
2087 if (error)
2088 goto out;
2089
3ee17abd
BF
2090 error = vfs_test_lock(filp, &file_lock);
2091 if (error)
2092 goto out;
2093
9d6a8c5c
ME
2094 flock.l_type = file_lock.fl_type;
2095 if (file_lock.fl_type != F_UNLCK)
2096 posix_lock_to_flock64(&flock, &file_lock);
2097
1da177e4
LT
2098 error = -EFAULT;
2099 if (!copy_to_user(l, &flock, sizeof(flock)))
2100 error = 0;
2101
2102out:
2103 return error;
2104}
2105
2106/* Apply the lock described by l to an open file descriptor.
2107 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2108 */
c293621b
PS
2109int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
2110 struct flock64 __user *l)
1da177e4
LT
2111{
2112 struct file_lock *file_lock = locks_alloc_lock();
2113 struct flock64 flock;
2114 struct inode *inode;
0b2bac2f 2115 struct file *f;
1da177e4
LT
2116 int error;
2117
2118 if (file_lock == NULL)
2119 return -ENOLCK;
2120
2121 /*
2122 * This might block, so we do it before checking the inode.
2123 */
2124 error = -EFAULT;
2125 if (copy_from_user(&flock, l, sizeof(flock)))
2126 goto out;
2127
496ad9aa 2128 inode = file_inode(filp);
1da177e4
LT
2129
2130 /* Don't allow mandatory locks on files that may be memory mapped
2131 * and shared.
2132 */
a16877ca 2133 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
1da177e4
LT
2134 error = -EAGAIN;
2135 goto out;
2136 }
2137
c293621b 2138again:
1da177e4
LT
2139 error = flock64_to_posix_lock(filp, file_lock, &flock);
2140 if (error)
2141 goto out;
2142 if (cmd == F_SETLKW64) {
2143 file_lock->fl_flags |= FL_SLEEP;
2144 }
2145
2146 error = -EBADF;
2147 switch (flock.l_type) {
2148 case F_RDLCK:
2149 if (!(filp->f_mode & FMODE_READ))
2150 goto out;
2151 break;
2152 case F_WRLCK:
2153 if (!(filp->f_mode & FMODE_WRITE))
2154 goto out;
2155 break;
2156 case F_UNLCK:
2157 break;
2158 default:
2159 error = -EINVAL;
2160 goto out;
2161 }
2162
b648a6de 2163 error = do_lock_file_wait(filp, cmd, file_lock);
1da177e4 2164
c293621b
PS
2165 /*
2166 * Attempt to detect a close/fcntl race and recover by
2167 * releasing the lock that was just acquired.
2168 */
0b2bac2f
AV
2169 spin_lock(&current->files->file_lock);
2170 f = fcheck(fd);
2171 spin_unlock(&current->files->file_lock);
2172 if (!error && f != filp && flock.l_type != F_UNLCK) {
c293621b
PS
2173 flock.l_type = F_UNLCK;
2174 goto again;
1da177e4
LT
2175 }
2176
2177out:
2178 locks_free_lock(file_lock);
2179 return error;
2180}
2181#endif /* BITS_PER_LONG == 32 */
2182
2183/*
2184 * This function is called when the file is being removed
2185 * from the task's fd array. POSIX locks belonging to this task
2186 * are deleted at this time.
2187 */
2188void locks_remove_posix(struct file *filp, fl_owner_t owner)
2189{
ff7b86b8 2190 struct file_lock lock;
1da177e4
LT
2191
2192 /*
2193 * If there are no locks held on this file, we don't need to call
2194 * posix_lock_file(). Another process could be setting a lock on this
2195 * file at the same time, but we wouldn't remove that lock anyway.
2196 */
496ad9aa 2197 if (!file_inode(filp)->i_flock)
1da177e4
LT
2198 return;
2199
2200 lock.fl_type = F_UNLCK;
75e1fcc0 2201 lock.fl_flags = FL_POSIX | FL_CLOSE;
1da177e4
LT
2202 lock.fl_start = 0;
2203 lock.fl_end = OFFSET_MAX;
2204 lock.fl_owner = owner;
2205 lock.fl_pid = current->tgid;
2206 lock.fl_file = filp;
2207 lock.fl_ops = NULL;
2208 lock.fl_lmops = NULL;
2209
150b3934 2210 vfs_lock_file(filp, F_SETLK, &lock, NULL);
1da177e4 2211
1da177e4
LT
2212 if (lock.fl_ops && lock.fl_ops->fl_release_private)
2213 lock.fl_ops->fl_release_private(&lock);
2214}
2215
2216EXPORT_SYMBOL(locks_remove_posix);
2217
2218/*
2219 * This function is called on the last close of an open file.
2220 */
2221void locks_remove_flock(struct file *filp)
2222{
496ad9aa 2223 struct inode * inode = file_inode(filp);
1da177e4
LT
2224 struct file_lock *fl;
2225 struct file_lock **before;
2226
2227 if (!inode->i_flock)
2228 return;
2229
72c2d531 2230 if (filp->f_op->flock) {
1da177e4
LT
2231 struct file_lock fl = {
2232 .fl_pid = current->tgid,
2233 .fl_file = filp,
2234 .fl_flags = FL_FLOCK,
2235 .fl_type = F_UNLCK,
2236 .fl_end = OFFSET_MAX,
2237 };
2238 filp->f_op->flock(filp, F_SETLKW, &fl);
80fec4c6
TM
2239 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2240 fl.fl_ops->fl_release_private(&fl);
1da177e4
LT
2241 }
2242
1c8c601a 2243 spin_lock(&inode->i_lock);
1da177e4
LT
2244 before = &inode->i_flock;
2245
2246 while ((fl = *before) != NULL) {
2247 if (fl->fl_file == filp) {
1da177e4
LT
2248 if (IS_LEASE(fl)) {
2249 lease_modify(before, F_UNLCK);
2250 continue;
2251 }
8c3cac5e
JL
2252
2253 /*
2254 * There's a leftover lock on the list of a type that
2255 * we didn't expect to see. Most likely a classic
2256 * POSIX lock that ended up not getting released
2257 * properly, or that raced onto the list somehow. Log
2258 * some info about it and then just remove it from
2259 * the list.
2260 */
2261 WARN(!IS_FLOCK(fl),
2262 "leftover lock: dev=%u:%u ino=%lu type=%hhd flags=0x%x start=%lld end=%lld\n",
2263 MAJOR(inode->i_sb->s_dev),
2264 MINOR(inode->i_sb->s_dev), inode->i_ino,
2265 fl->fl_type, fl->fl_flags,
2266 fl->fl_start, fl->fl_end);
2267
2268 locks_delete_lock(before);
2269 continue;
1da177e4
LT
2270 }
2271 before = &fl->fl_next;
2272 }
1c8c601a 2273 spin_unlock(&inode->i_lock);
1da177e4
LT
2274}
2275
1da177e4
LT
2276/**
2277 * posix_unblock_lock - stop waiting for a file lock
1da177e4
LT
2278 * @waiter: the lock which was waiting
2279 *
2280 * lockd needs to block waiting for locks.
2281 */
64a318ee 2282int
f891a29f 2283posix_unblock_lock(struct file_lock *waiter)
1da177e4 2284{
64a318ee
BF
2285 int status = 0;
2286
7b2296af 2287 spin_lock(&blocked_lock_lock);
5996a298 2288 if (waiter->fl_next)
1da177e4 2289 __locks_delete_block(waiter);
64a318ee
BF
2290 else
2291 status = -ENOENT;
7b2296af 2292 spin_unlock(&blocked_lock_lock);
64a318ee 2293 return status;
1da177e4 2294}
1da177e4
LT
2295EXPORT_SYMBOL(posix_unblock_lock);
2296
9b9d2ab4
ME
2297/**
2298 * vfs_cancel_lock - file byte range unblock lock
2299 * @filp: The file to apply the unblock to
2300 * @fl: The lock to be unblocked
2301 *
2302 * Used by lock managers to cancel blocked requests
2303 */
2304int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
2305{
72c2d531 2306 if (filp->f_op->lock)
9b9d2ab4
ME
2307 return filp->f_op->lock(filp, F_CANCELLK, fl);
2308 return 0;
2309}
2310
2311EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2312
7f8ada98 2313#ifdef CONFIG_PROC_FS
d8ba7a36 2314#include <linux/proc_fs.h>
7f8ada98
PE
2315#include <linux/seq_file.h>
2316
7012b02a
JL
2317struct locks_iterator {
2318 int li_cpu;
2319 loff_t li_pos;
2320};
2321
7f8ada98 2322static void lock_get_status(struct seq_file *f, struct file_lock *fl,
99dc8292 2323 loff_t id, char *pfx)
1da177e4
LT
2324{
2325 struct inode *inode = NULL;
ab1f1611
VG
2326 unsigned int fl_pid;
2327
2328 if (fl->fl_nspid)
6c5f3e7b 2329 fl_pid = pid_vnr(fl->fl_nspid);
ab1f1611
VG
2330 else
2331 fl_pid = fl->fl_pid;
1da177e4
LT
2332
2333 if (fl->fl_file != NULL)
496ad9aa 2334 inode = file_inode(fl->fl_file);
1da177e4 2335
99dc8292 2336 seq_printf(f, "%lld:%s ", id, pfx);
1da177e4 2337 if (IS_POSIX(fl)) {
7f8ada98 2338 seq_printf(f, "%6s %s ",
1da177e4
LT
2339 (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
2340 (inode == NULL) ? "*NOINODE*" :
a16877ca 2341 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
1da177e4
LT
2342 } else if (IS_FLOCK(fl)) {
2343 if (fl->fl_type & LOCK_MAND) {
7f8ada98 2344 seq_printf(f, "FLOCK MSNFS ");
1da177e4 2345 } else {
7f8ada98 2346 seq_printf(f, "FLOCK ADVISORY ");
1da177e4
LT
2347 }
2348 } else if (IS_LEASE(fl)) {
7f8ada98 2349 seq_printf(f, "LEASE ");
ab83fa4b 2350 if (lease_breaking(fl))
7f8ada98 2351 seq_printf(f, "BREAKING ");
1da177e4 2352 else if (fl->fl_file)
7f8ada98 2353 seq_printf(f, "ACTIVE ");
1da177e4 2354 else
7f8ada98 2355 seq_printf(f, "BREAKER ");
1da177e4 2356 } else {
7f8ada98 2357 seq_printf(f, "UNKNOWN UNKNOWN ");
1da177e4
LT
2358 }
2359 if (fl->fl_type & LOCK_MAND) {
7f8ada98 2360 seq_printf(f, "%s ",
1da177e4
LT
2361 (fl->fl_type & LOCK_READ)
2362 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
2363 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2364 } else {
7f8ada98 2365 seq_printf(f, "%s ",
ab83fa4b 2366 (lease_breaking(fl))
0ee5c6d6
JL
2367 ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2368 : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
1da177e4
LT
2369 }
2370 if (inode) {
2371#ifdef WE_CAN_BREAK_LSLK_NOW
ab1f1611 2372 seq_printf(f, "%d %s:%ld ", fl_pid,
1da177e4
LT
2373 inode->i_sb->s_id, inode->i_ino);
2374#else
2375 /* userspace relies on this representation of dev_t ;-( */
ab1f1611 2376 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
1da177e4
LT
2377 MAJOR(inode->i_sb->s_dev),
2378 MINOR(inode->i_sb->s_dev), inode->i_ino);
2379#endif
2380 } else {
ab1f1611 2381 seq_printf(f, "%d <none>:0 ", fl_pid);
1da177e4
LT
2382 }
2383 if (IS_POSIX(fl)) {
2384 if (fl->fl_end == OFFSET_MAX)
7f8ada98 2385 seq_printf(f, "%Ld EOF\n", fl->fl_start);
1da177e4 2386 else
7f8ada98 2387 seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
1da177e4 2388 } else {
7f8ada98 2389 seq_printf(f, "0 EOF\n");
1da177e4
LT
2390 }
2391}
2392
7f8ada98 2393static int locks_show(struct seq_file *f, void *v)
1da177e4 2394{
7012b02a 2395 struct locks_iterator *iter = f->private;
7f8ada98 2396 struct file_lock *fl, *bfl;
1da177e4 2397
139ca04e 2398 fl = hlist_entry(v, struct file_lock, fl_link);
1da177e4 2399
7012b02a 2400 lock_get_status(f, fl, iter->li_pos, "");
1da177e4 2401
7f8ada98 2402 list_for_each_entry(bfl, &fl->fl_block, fl_block)
7012b02a 2403 lock_get_status(f, bfl, iter->li_pos, " ->");
094f2825 2404
7f8ada98
PE
2405 return 0;
2406}
1da177e4 2407
7f8ada98 2408static void *locks_start(struct seq_file *f, loff_t *pos)
b03dfdec 2409 __acquires(&blocked_lock_lock)
7f8ada98 2410{
7012b02a 2411 struct locks_iterator *iter = f->private;
99dc8292 2412
7012b02a
JL
2413 iter->li_pos = *pos + 1;
2414 lg_global_lock(&file_lock_lglock);
7b2296af 2415 spin_lock(&blocked_lock_lock);
7012b02a 2416 return seq_hlist_start_percpu(&file_lock_list, &iter->li_cpu, *pos);
7f8ada98 2417}
1da177e4 2418
7f8ada98
PE
2419static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2420{
7012b02a
JL
2421 struct locks_iterator *iter = f->private;
2422
2423 ++iter->li_pos;
2424 return seq_hlist_next_percpu(v, &file_lock_list, &iter->li_cpu, pos);
7f8ada98 2425}
1da177e4 2426
7f8ada98 2427static void locks_stop(struct seq_file *f, void *v)
b03dfdec 2428 __releases(&blocked_lock_lock)
7f8ada98 2429{
7b2296af 2430 spin_unlock(&blocked_lock_lock);
7012b02a 2431 lg_global_unlock(&file_lock_lglock);
1da177e4
LT
2432}
2433
d8ba7a36 2434static const struct seq_operations locks_seq_operations = {
7f8ada98
PE
2435 .start = locks_start,
2436 .next = locks_next,
2437 .stop = locks_stop,
2438 .show = locks_show,
2439};
d8ba7a36
AD
2440
2441static int locks_open(struct inode *inode, struct file *filp)
2442{
7012b02a
JL
2443 return seq_open_private(filp, &locks_seq_operations,
2444 sizeof(struct locks_iterator));
d8ba7a36
AD
2445}
2446
2447static const struct file_operations proc_locks_operations = {
2448 .open = locks_open,
2449 .read = seq_read,
2450 .llseek = seq_lseek,
99dc8292 2451 .release = seq_release_private,
d8ba7a36
AD
2452};
2453
2454static int __init proc_locks_init(void)
2455{
2456 proc_create("locks", 0, NULL, &proc_locks_operations);
2457 return 0;
2458}
2459module_init(proc_locks_init);
7f8ada98
PE
2460#endif
2461
1da177e4
LT
2462/**
2463 * lock_may_read - checks that the region is free of locks
2464 * @inode: the inode that is being read
2465 * @start: the first byte to read
2466 * @len: the number of bytes to read
2467 *
2468 * Emulates Windows locking requirements. Whole-file
2469 * mandatory locks (share modes) can prohibit a read and
2470 * byte-range POSIX locks can prohibit a read if they overlap.
2471 *
2472 * N.B. this function is only ever called
2473 * from knfsd and ownership of locks is never checked.
2474 */
2475int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
2476{
2477 struct file_lock *fl;
2478 int result = 1;
1c8c601a
JL
2479
2480 spin_lock(&inode->i_lock);
1da177e4
LT
2481 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2482 if (IS_POSIX(fl)) {
2483 if (fl->fl_type == F_RDLCK)
2484 continue;
2485 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2486 continue;
2487 } else if (IS_FLOCK(fl)) {
2488 if (!(fl->fl_type & LOCK_MAND))
2489 continue;
2490 if (fl->fl_type & LOCK_READ)
2491 continue;
2492 } else
2493 continue;
2494 result = 0;
2495 break;
2496 }
1c8c601a 2497 spin_unlock(&inode->i_lock);
1da177e4
LT
2498 return result;
2499}
2500
2501EXPORT_SYMBOL(lock_may_read);
2502
2503/**
2504 * lock_may_write - checks that the region is free of locks
2505 * @inode: the inode that is being written
2506 * @start: the first byte to write
2507 * @len: the number of bytes to write
2508 *
2509 * Emulates Windows locking requirements. Whole-file
2510 * mandatory locks (share modes) can prohibit a write and
2511 * byte-range POSIX locks can prohibit a write if they overlap.
2512 *
2513 * N.B. this function is only ever called
2514 * from knfsd and ownership of locks is never checked.
2515 */
2516int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
2517{
2518 struct file_lock *fl;
2519 int result = 1;
1c8c601a
JL
2520
2521 spin_lock(&inode->i_lock);
1da177e4
LT
2522 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2523 if (IS_POSIX(fl)) {
2524 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2525 continue;
2526 } else if (IS_FLOCK(fl)) {
2527 if (!(fl->fl_type & LOCK_MAND))
2528 continue;
2529 if (fl->fl_type & LOCK_WRITE)
2530 continue;
2531 } else
2532 continue;
2533 result = 0;
2534 break;
2535 }
1c8c601a 2536 spin_unlock(&inode->i_lock);
1da177e4
LT
2537 return result;
2538}
2539
2540EXPORT_SYMBOL(lock_may_write);
2541
1da177e4
LT
2542static int __init filelock_init(void)
2543{
7012b02a
JL
2544 int i;
2545
1da177e4 2546 filelock_cache = kmem_cache_create("file_lock_cache",
ee19cc40
MS
2547 sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2548
7012b02a
JL
2549 lg_lock_init(&file_lock_lglock, "file_lock_lglock");
2550
2551 for_each_possible_cpu(i)
2552 INIT_HLIST_HEAD(per_cpu_ptr(&file_lock_list, i));
2553
1da177e4
LT
2554 return 0;
2555}
2556
2557core_initcall(filelock_init);