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