locks: encapsulate the fl_link list handling
[platform/adaptation/renesas_rcar/renesas_kernel.git] / fs / locks.c
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.
63  *  See 'Documentation/filesystems/mandatory-locking.txt' for details.
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>
119 #include <linux/fdtable.h>
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>
125 #include <linux/syscalls.h>
126 #include <linux/time.h>
127 #include <linux/rcupdate.h>
128 #include <linux/pid_namespace.h>
129
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
136 static bool lease_breaking(struct file_lock *fl)
137 {
138         return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
139 }
140
141 static 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;
148 }
149
150 int leases_enable = 1;
151 int 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
156 /* The global file_lock_list is only used for displaying /proc/locks. */
157 static LIST_HEAD(file_lock_list);
158
159 /* The blocked_list is used to find POSIX lock loops for deadlock detection. */
160 static LIST_HEAD(blocked_list);
161
162 /* Protects the two list heads above, plus the inode->i_flock list */
163 static DEFINE_SPINLOCK(file_lock_lock);
164
165 void lock_flocks(void)
166 {
167         spin_lock(&file_lock_lock);
168 }
169 EXPORT_SYMBOL_GPL(lock_flocks);
170
171 void unlock_flocks(void)
172 {
173         spin_unlock(&file_lock_lock);
174 }
175 EXPORT_SYMBOL_GPL(unlock_flocks);
176
177 static struct kmem_cache *filelock_cache __read_mostly;
178
179 static void locks_init_lock_heads(struct file_lock *fl)
180 {
181         INIT_LIST_HEAD(&fl->fl_link);
182         INIT_LIST_HEAD(&fl->fl_block);
183         init_waitqueue_head(&fl->fl_wait);
184 }
185
186 /* Allocate an empty lock structure. */
187 struct file_lock *locks_alloc_lock(void)
188 {
189         struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
190
191         if (fl)
192                 locks_init_lock_heads(fl);
193
194         return fl;
195 }
196 EXPORT_SYMBOL_GPL(locks_alloc_lock);
197
198 void locks_release_private(struct file_lock *fl)
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         }
205         fl->fl_lmops = NULL;
206
207 }
208 EXPORT_SYMBOL_GPL(locks_release_private);
209
210 /* Free a lock which is not in use. */
211 void locks_free_lock(struct file_lock *fl)
212 {
213         BUG_ON(waitqueue_active(&fl->fl_wait));
214         BUG_ON(!list_empty(&fl->fl_block));
215         BUG_ON(!list_empty(&fl->fl_link));
216
217         locks_release_private(fl);
218         kmem_cache_free(filelock_cache, fl);
219 }
220 EXPORT_SYMBOL(locks_free_lock);
221
222 void locks_init_lock(struct file_lock *fl)
223 {
224         memset(fl, 0, sizeof(struct file_lock));
225         locks_init_lock_heads(fl);
226 }
227
228 EXPORT_SYMBOL(locks_init_lock);
229
230 static 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         }
237         if (fl->fl_lmops)
238                 new->fl_lmops = fl->fl_lmops;
239 }
240
241 /*
242  * Initialize a new lock from an existing file_lock structure.
243  */
244 void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
245 {
246         new->fl_owner = fl->fl_owner;
247         new->fl_pid = fl->fl_pid;
248         new->fl_file = NULL;
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;
253         new->fl_ops = NULL;
254         new->fl_lmops = NULL;
255 }
256 EXPORT_SYMBOL(__locks_copy_lock);
257
258 void 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;
264         new->fl_ops = fl->fl_ops;
265         new->fl_lmops = fl->fl_lmops;
266
267         locks_copy_private(new, fl);
268 }
269
270 EXPORT_SYMBOL(locks_copy_lock);
271
272 static 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. */
287 static 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
309 static int assign_type(struct file_lock *fl, long type)
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  */
326 static 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) {
332         case SEEK_SET:
333                 start = 0;
334                 break;
335         case SEEK_CUR:
336                 start = filp->f_pos;
337                 break;
338         case SEEK_END:
339                 start = i_size_read(file_inode(filp));
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;
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) {
355                 end = start - 1;
356                 fl->fl_end = end;
357                 start += l->l_len;
358                 if (start < 0)
359                         return -EINVAL;
360         }
361         fl->fl_start = start;   /* we record the absolute position */
362         if (fl->fl_end < fl->fl_start)
363                 return -EOVERFLOW;
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
376 static 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) {
382         case SEEK_SET:
383                 start = 0;
384                 break;
385         case SEEK_CUR:
386                 start = filp->f_pos;
387                 break;
388         case SEEK_END:
389                 start = i_size_read(file_inode(filp));
390                 break;
391         default:
392                 return -EINVAL;
393         }
394
395         start += l->l_start;
396         if (start < 0)
397                 return -EINVAL;
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         }
407         fl->fl_start = start;   /* we record the absolute position */
408         if (fl->fl_end < fl->fl_start)
409                 return -EOVERFLOW;
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
418         return assign_type(fl, l->l_type);
419 }
420 #endif
421
422 /* default lease lock manager operations */
423 static void lease_break_callback(struct file_lock *fl)
424 {
425         kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
426 }
427
428 static const struct lock_manager_operations lease_manager_ops = {
429         .lm_break = lease_break_callback,
430         .lm_change = lease_modify,
431 };
432
433 /*
434  * Initialize a lease, use the default lock manager operations
435  */
436 static int lease_init(struct file *filp, long type, struct file_lock *fl)
437  {
438         if (assign_type(fl, type) != 0)
439                 return -EINVAL;
440
441         fl->fl_owner = current->files;
442         fl->fl_pid = current->tgid;
443
444         fl->fl_file = filp;
445         fl->fl_flags = FL_LEASE;
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 */
454 static struct file_lock *lease_alloc(struct file *filp, long type)
455 {
456         struct file_lock *fl = locks_alloc_lock();
457         int error = -ENOMEM;
458
459         if (fl == NULL)
460                 return ERR_PTR(error);
461
462         error = lease_init(filp, type, fl);
463         if (error) {
464                 locks_free_lock(fl);
465                 return ERR_PTR(error);
466         }
467         return fl;
468 }
469
470 /* Check if two locks overlap each other.
471  */
472 static 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  */
481 static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
482 {
483         if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
484                 return fl2->fl_lmops == fl1->fl_lmops &&
485                         fl1->fl_lmops->lm_compare_owner(fl1, fl2);
486         return fl1->fl_owner == fl2->fl_owner;
487 }
488
489 static inline void
490 locks_insert_global_locks(struct file_lock *fl)
491 {
492         list_add_tail(&fl->fl_link, &file_lock_list);
493 }
494
495 static inline void
496 locks_delete_global_locks(struct file_lock *fl)
497 {
498         list_del_init(&fl->fl_link);
499 }
500
501 static inline void
502 locks_insert_global_blocked(struct file_lock *waiter)
503 {
504         list_add(&waiter->fl_link, &blocked_list);
505 }
506
507 static inline void
508 locks_delete_global_blocked(struct file_lock *waiter)
509 {
510         list_del_init(&waiter->fl_link);
511 }
512
513 /* Remove waiter from blocker's block list.
514  * When blocker ends up pointing to itself then the list is empty.
515  */
516 static void __locks_delete_block(struct file_lock *waiter)
517 {
518         locks_delete_global_blocked(waiter);
519         list_del_init(&waiter->fl_block);
520         waiter->fl_next = NULL;
521 }
522
523 /*
524  */
525 static void locks_delete_block(struct file_lock *waiter)
526 {
527         lock_flocks();
528         __locks_delete_block(waiter);
529         unlock_flocks();
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  */
537 static void locks_insert_block(struct file_lock *blocker, 
538                                struct file_lock *waiter)
539 {
540         BUG_ON(!list_empty(&waiter->fl_block));
541         waiter->fl_next = blocker;
542         list_add_tail(&waiter->fl_block, &blocker->fl_block);
543         if (IS_POSIX(blocker))
544                 locks_insert_global_blocked(request);
545 }
546
547 /*
548  * Wake up processes blocked waiting for blocker.
549  *
550  * Must be called with the file_lock_lock held!
551  */
552 static void locks_wake_up_blocks(struct file_lock *blocker)
553 {
554         while (!list_empty(&blocker->fl_block)) {
555                 struct file_lock *waiter;
556
557                 waiter = list_first_entry(&blocker->fl_block,
558                                 struct file_lock, fl_block);
559                 __locks_delete_block(waiter);
560                 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
561                         waiter->fl_lmops->lm_notify(waiter);
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  */
570 static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
571 {
572         fl->fl_nspid = get_pid(task_tgid(current));
573
574         /* insert into file's list */
575         fl->fl_next = *pos;
576         *pos = fl;
577
578         locks_insert_global_locks(fl);
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  */
587 static void locks_delete_lock(struct file_lock **thisfl_p)
588 {
589         struct file_lock *fl = *thisfl_p;
590
591         locks_delete_global_locks(fl);
592
593         *thisfl_p = fl->fl_next;
594         fl->fl_next = NULL;
595
596         if (fl->fl_nspid) {
597                 put_pid(fl->fl_nspid);
598                 fl->fl_nspid = NULL;
599         }
600
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  */
608 static 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  */
620 static 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  */
638 static 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
651 void
652 posix_test_lock(struct file *filp, struct file_lock *fl)
653 {
654         struct file_lock *cfl;
655
656         lock_flocks();
657         for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
658                 if (!IS_POSIX(cfl))
659                         continue;
660                 if (posix_locks_conflict(fl, cfl))
661                         break;
662         }
663         if (cfl) {
664                 __locks_copy_lock(fl, cfl);
665                 if (cfl->fl_nspid)
666                         fl->fl_pid = pid_vnr(cfl->fl_nspid);
667         } else
668                 fl->fl_type = F_UNLCK;
669         unlock_flocks();
670         return;
671 }
672 EXPORT_SYMBOL(posix_test_lock);
673
674 /*
675  * Deadlock detection:
676  *
677  * We attempt to detect deadlocks that are due purely to posix file
678  * locks.
679  *
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.
687  *
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.
691  *
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.
697  */
698
699 #define MAX_DEADLK_ITERATIONS 10
700
701 /* Find a lock that the owner of the given block_fl is blocking on. */
702 static 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
713 static int posix_locks_deadlock(struct file_lock *caller_fl,
714                                 struct file_lock *block_fl)
715 {
716         int i = 0;
717
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;
723         }
724         return 0;
725 }
726
727 /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
728  * after any leases, but before any posix locks.
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.
733  */
734 static int flock_lock_file(struct file *filp, struct file_lock *request)
735 {
736         struct file_lock *new_fl = NULL;
737         struct file_lock **before;
738         struct inode * inode = file_inode(filp);
739         int error = 0;
740         int found = 0;
741
742         if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
743                 new_fl = locks_alloc_lock();
744                 if (!new_fl)
745                         return -ENOMEM;
746         }
747
748         lock_flocks();
749         if (request->fl_flags & FL_ACCESS)
750                 goto find_conflict;
751
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;
760                 if (request->fl_type == fl->fl_type)
761                         goto out;
762                 found = 1;
763                 locks_delete_lock(before);
764                 break;
765         }
766
767         if (request->fl_type == F_UNLCK) {
768                 if ((request->fl_flags & FL_EXISTS) && !found)
769                         error = -ENOENT;
770                 goto out;
771         }
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          */
777         if (found) {
778                 unlock_flocks();
779                 cond_resched();
780                 lock_flocks();
781         }
782
783 find_conflict:
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;
790                 if (!flock_locks_conflict(request, fl))
791                         continue;
792                 error = -EAGAIN;
793                 if (!(request->fl_flags & FL_SLEEP))
794                         goto out;
795                 error = FILE_LOCK_DEFERRED;
796                 locks_insert_block(fl, request);
797                 goto out;
798         }
799         if (request->fl_flags & FL_ACCESS)
800                 goto out;
801         locks_copy_lock(new_fl, request);
802         locks_insert_lock(before, new_fl);
803         new_fl = NULL;
804         error = 0;
805
806 out:
807         unlock_flocks();
808         if (new_fl)
809                 locks_free_lock(new_fl);
810         return error;
811 }
812
813 static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
814 {
815         struct file_lock *fl;
816         struct file_lock *new_fl = NULL;
817         struct file_lock *new_fl2 = NULL;
818         struct file_lock *left = NULL;
819         struct file_lock *right = NULL;
820         struct file_lock **before;
821         int error;
822         bool added = false;
823
824         /*
825          * We may need two file_lock structures for this operation,
826          * so we get them in advance to avoid races.
827          *
828          * In some cases we can be sure, that no new locks will be needed
829          */
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         }
836
837         lock_flocks();
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          */
843         if (request->fl_type != F_UNLCK) {
844                 for_each_lock(inode, before) {
845                         fl = *before;
846                         if (!IS_POSIX(fl))
847                                 continue;
848                         if (!posix_locks_conflict(request, fl))
849                                 continue;
850                         if (conflock)
851                                 __locks_copy_lock(conflock, fl);
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;
858                         error = FILE_LOCK_DEFERRED;
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
869         /*
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
881         /* Process locks with this owner. */
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) {
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                          */
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                          */
895                         if (fl->fl_start - 1 > request->fl_end)
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;
916                         added = true;
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)
927                                 added = true;
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;
954                                 locks_release_private(fl);
955                                 locks_copy_private(fl, request);
956                                 request = fl;
957                                 added = true;
958                         }
959                 }
960                 /* Go on to next lock.
961                  */
962         next_lock:
963                 before = &fl->fl_next;
964         }
965
966         /*
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.
970          */
971         error = -ENOLCK; /* "no luck" */
972         if (right && left == right && !new_fl2)
973                 goto out;
974
975         error = 0;
976         if (!added) {
977                 if (request->fl_type == F_UNLCK) {
978                         if (request->fl_flags & FL_EXISTS)
979                                 error = -ENOENT;
980                         goto out;
981                 }
982
983                 if (!new_fl) {
984                         error = -ENOLCK;
985                         goto out;
986                 }
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:
1009         unlock_flocks();
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
1024  * @conflock: Place to return a copy of the conflicting lock, if found.
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
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.
1033  */
1034 int posix_lock_file(struct file *filp, struct file_lock *fl,
1035                         struct file_lock *conflock)
1036 {
1037         return __posix_lock_file(file_inode(filp), fl, conflock);
1038 }
1039 EXPORT_SYMBOL(posix_lock_file);
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  */
1050 int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
1051 {
1052         int error;
1053         might_sleep ();
1054         for (;;) {
1055                 error = posix_lock_file(filp, fl, NULL);
1056                 if (error != FILE_LOCK_DEFERRED)
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 }
1067 EXPORT_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  */
1076 int 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          */
1084         lock_flocks();
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         }
1091         unlock_flocks();
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  */
1108 int 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 (;;) {
1127                 error = __posix_lock_file(inode, &fl, NULL);
1128                 if (error != FILE_LOCK_DEFERRED)
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                          */
1136                         if (__mandatory_lock(inode))
1137                                 continue;
1138                 }
1139
1140                 locks_delete_block(&fl);
1141                 break;
1142         }
1143
1144         return error;
1145 }
1146
1147 EXPORT_SYMBOL(locks_mandatory_area);
1148
1149 static 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
1160 /* We already had a lease on this file; just change its type */
1161 int 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;
1168         lease_clear_pending(fl, arg);
1169         locks_wake_up_blocks(fl);
1170         if (arg == F_UNLCK) {
1171                 struct file *filp = fl->fl_file;
1172
1173                 f_delown(filp);
1174                 filp->f_owner.signum = 0;
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                 }
1180                 locks_delete_lock(before);
1181         }
1182         return 0;
1183 }
1184
1185 EXPORT_SYMBOL(lease_modify);
1186
1187 static 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
1195 static void time_out_leases(struct inode *inode)
1196 {
1197         struct file_lock **before;
1198         struct file_lock *fl;
1199
1200         before = &inode->i_flock;
1201         while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
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);
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  *
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
1219  *      specified %O_NONBLOCK to your open().
1220  */
1221 int __break_lease(struct inode *inode, unsigned int mode)
1222 {
1223         int error = 0;
1224         struct file_lock *new_fl, *flock;
1225         struct file_lock *fl;
1226         unsigned long break_time;
1227         int i_have_this_lease = 0;
1228         int want_write = (mode & O_ACCMODE) != O_RDONLY;
1229
1230         new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
1231         if (IS_ERR(new_fl))
1232                 return PTR_ERR(new_fl);
1233
1234         lock_flocks();
1235
1236         time_out_leases(inode);
1237
1238         flock = inode->i_flock;
1239         if ((flock == NULL) || !IS_LEASE(flock))
1240                 goto out;
1241
1242         if (!locks_conflict(flock, new_fl))
1243                 goto out;
1244
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
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) {
1257                 if (want_write) {
1258                         if (fl->fl_flags & FL_UNLOCK_PENDING)
1259                                 continue;
1260                         fl->fl_flags |= FL_UNLOCK_PENDING;
1261                         fl->fl_break_time = break_time;
1262                 } else {
1263                         if (lease_breaking(flock))
1264                                 continue;
1265                         fl->fl_flags |= FL_DOWNGRADE_PENDING;
1266                         fl->fl_downgrade_time = break_time;
1267                 }
1268                 fl->fl_lmops->lm_break(fl);
1269         }
1270
1271         if (i_have_this_lease || (mode & O_NONBLOCK)) {
1272                 error = -EWOULDBLOCK;
1273                 goto out;
1274         }
1275
1276 restart:
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         }
1283         locks_insert_block(flock, new_fl);
1284         unlock_flocks();
1285         error = wait_event_interruptible_timeout(new_fl->fl_wait,
1286                                                 !new_fl->fl_next, break_time);
1287         lock_flocks();
1288         __locks_delete_block(new_fl);
1289         if (error >= 0) {
1290                 if (error == 0)
1291                         time_out_leases(inode);
1292                 /*
1293                  * Wait for the next conflicting lease that has not been
1294                  * broken yet
1295                  */
1296                 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1297                                 flock = flock->fl_next) {
1298                         if (locks_conflict(new_fl, flock))
1299                                 goto restart;
1300                 }
1301                 error = 0;
1302         }
1303
1304 out:
1305         unlock_flocks();
1306         locks_free_lock(new_fl);
1307         return error;
1308 }
1309
1310 EXPORT_SYMBOL(__break_lease);
1311
1312 /**
1313  *      lease_get_mtime - get the last modified time of an inode
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
1319  * exclusive lease, then they could be modifying it.
1320  */
1321 void lease_get_mtime(struct inode *inode, struct timespec *time)
1322 {
1323         struct file_lock *flock = inode->i_flock;
1324         if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
1325                 *time = current_fs_time(inode->i_sb);
1326         else
1327                 *time = inode->i_mtime;
1328 }
1329
1330 EXPORT_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  */
1355 int fcntl_getlease(struct file *filp)
1356 {
1357         struct file_lock *fl;
1358         int type = F_UNLCK;
1359
1360         lock_flocks();
1361         time_out_leases(file_inode(filp));
1362         for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
1363                         fl = fl->fl_next) {
1364                 if (fl->fl_file == filp) {
1365                         type = target_leasetype(fl);
1366                         break;
1367                 }
1368         }
1369         unlock_flocks();
1370         return type;
1371 }
1372
1373 static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
1374 {
1375         struct file_lock *fl, **before, **my_before = NULL, *lease;
1376         struct dentry *dentry = filp->f_path.dentry;
1377         struct inode *inode = dentry->d_inode;
1378         int error;
1379
1380         lease = *flp;
1381
1382         error = -EAGAIN;
1383         if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
1384                 goto out;
1385         if ((arg == F_WRLCK)
1386             && ((dentry->d_count > 1)
1387                 || (atomic_read(&inode->i_count) > 1)))
1388                 goto out;
1389
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          */
1398         error = -EAGAIN;
1399         for (before = &inode->i_flock;
1400                         ((fl = *before) != NULL) && IS_LEASE(fl);
1401                         before = &fl->fl_next) {
1402                 if (fl->fl_file == filp) {
1403                         my_before = before;
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;
1418         }
1419
1420         if (my_before != NULL) {
1421                 error = lease->fl_lmops->lm_change(my_before, arg);
1422                 if (!error)
1423                         *flp = *my_before;
1424                 goto out;
1425         }
1426
1427         error = -EINVAL;
1428         if (!leases_enable)
1429                 goto out;
1430
1431         locks_insert_lock(before, lease);
1432         return 0;
1433
1434 out:
1435         return error;
1436 }
1437
1438 static int generic_delete_lease(struct file *filp, struct file_lock **flp)
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  */
1465 int 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
1471         if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
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:
1490                 return -EINVAL;
1491         }
1492 }
1493 EXPORT_SYMBOL(generic_setlease);
1494
1495 static 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 /**
1504  *      vfs_setlease        -       sets a lease on an open file
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.
1510  *      The (*lease)->fl_lmops->lm_break operation must be set; if not,
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
1522  *      handle their own leases should break leases themselves from the
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.
1528  */
1529
1530 int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1531 {
1532         int error;
1533
1534         lock_flocks();
1535         error = __vfs_setlease(filp, arg, lease);
1536         unlock_flocks();
1537
1538         return error;
1539 }
1540 EXPORT_SYMBOL_GPL(vfs_setlease);
1541
1542 static 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
1551 static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
1552 {
1553         struct file_lock *fl, *ret;
1554         struct fasync_struct *new;
1555         int error;
1556
1557         fl = lease_alloc(filp, arg);
1558         if (IS_ERR(fl))
1559                 return PTR_ERR(fl);
1560
1561         new = fasync_alloc();
1562         if (!new) {
1563                 locks_free_lock(fl);
1564                 return -ENOMEM;
1565         }
1566         ret = fl;
1567         lock_flocks();
1568         error = __vfs_setlease(filp, arg, &ret);
1569         if (error) {
1570                 unlock_flocks();
1571                 locks_free_lock(fl);
1572                 goto out_free_fasync;
1573         }
1574         if (ret != fl)
1575                 locks_free_lock(fl);
1576
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          */
1583         if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
1584                 new = NULL;
1585
1586         error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
1587         unlock_flocks();
1588
1589 out_free_fasync:
1590         if (new)
1591                 fasync_free(new);
1592         return error;
1593 }
1594
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  */
1605 int 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
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  */
1619 int 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);
1625                 if (error != FILE_LOCK_DEFERRED)
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
1637 EXPORT_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  */
1658 SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
1659 {
1660         struct fd f = fdget(fd);
1661         struct file_lock *lock;
1662         int can_sleep, unlock;
1663         int error;
1664
1665         error = -EBADF;
1666         if (!f.file)
1667                 goto out;
1668
1669         can_sleep = !(cmd & LOCK_NB);
1670         cmd &= ~LOCK_NB;
1671         unlock = (cmd == LOCK_UN);
1672
1673         if (!unlock && !(cmd & LOCK_MAND) &&
1674             !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
1675                 goto out_putf;
1676
1677         error = flock_make_lock(f.file, &lock, cmd);
1678         if (error)
1679                 goto out_putf;
1680         if (can_sleep)
1681                 lock->fl_flags |= FL_SLEEP;
1682
1683         error = security_file_lock(f.file, lock->fl_type);
1684         if (error)
1685                 goto out_free;
1686
1687         if (f.file->f_op && f.file->f_op->flock)
1688                 error = f.file->f_op->flock(f.file,
1689                                           (can_sleep) ? F_SETLKW : F_SETLK,
1690                                           lock);
1691         else
1692                 error = flock_lock_file_wait(f.file, lock);
1693
1694  out_free:
1695         locks_free_lock(lock);
1696
1697  out_putf:
1698         fdput(f);
1699  out:
1700         return error;
1701 }
1702
1703 /**
1704  * vfs_test_lock - test file byte range lock
1705  * @filp: The file to test lock for
1706  * @fl: The lock to test; also used to hold result
1707  *
1708  * Returns -ERRNO on failure.  Indicates presence of conflicting lock by
1709  * setting conf->fl_type to something other than F_UNLCK.
1710  */
1711 int 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 }
1718 EXPORT_SYMBOL_GPL(vfs_test_lock);
1719
1720 static 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;
1737         flock->l_type = fl->fl_type;
1738         return 0;
1739 }
1740
1741 #if BITS_PER_LONG == 32
1742 static 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
1753 /* Report the first existing lock that would conflict with l.
1754  * This implements the F_GETLK command of fcntl().
1755  */
1756 int fcntl_getlk(struct file *filp, struct flock __user *l)
1757 {
1758         struct file_lock file_lock;
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
1773         error = vfs_test_lock(filp, &file_lock);
1774         if (error)
1775                 goto out;
1776  
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);
1780                 if (error)
1781                         goto out;
1782         }
1783         error = -EFAULT;
1784         if (!copy_to_user(l, &flock, sizeof(flock)))
1785                 error = 0;
1786 out:
1787         return error;
1788 }
1789
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
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.
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)
1807  * lm_grant is set. Callers expecting ->lock() to return asynchronously
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,
1810  * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
1811  * request completes.
1812  * If the request is for non-blocking lock the file system should return
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
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
1820  * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
1821  * return code.
1822  */
1823 int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
1824 {
1825         if (filp->f_op && filp->f_op->lock)
1826                 return filp->f_op->lock(filp, cmd, fl);
1827         else
1828                 return posix_lock_file(filp, fl, conf);
1829 }
1830 EXPORT_SYMBOL_GPL(vfs_lock_file);
1831
1832 static 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
1841         for (;;) {
1842                 error = vfs_lock_file(filp, cmd, fl, NULL);
1843                 if (error != FILE_LOCK_DEFERRED)
1844                         break;
1845                 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1846                 if (!error)
1847                         continue;
1848
1849                 locks_delete_block(fl);
1850                 break;
1851         }
1852
1853         return error;
1854 }
1855
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  */
1859 int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
1860                 struct flock __user *l)
1861 {
1862         struct file_lock *file_lock = locks_alloc_lock();
1863         struct flock flock;
1864         struct inode *inode;
1865         struct file *f;
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
1878         inode = file_inode(filp);
1879
1880         /* Don't allow mandatory locks on files that may be memory mapped
1881          * and shared.
1882          */
1883         if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
1884                 error = -EAGAIN;
1885                 goto out;
1886         }
1887
1888 again:
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
1913         error = do_lock_file_wait(filp, cmd, file_lock);
1914
1915         /*
1916          * Attempt to detect a close/fcntl race and recover by
1917          * releasing the lock that was just acquired.
1918          */
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) {
1928                 flock.l_type = F_UNLCK;
1929                 goto again;
1930         }
1931
1932 out:
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  */
1941 int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
1942 {
1943         struct file_lock file_lock;
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
1958         error = vfs_test_lock(filp, &file_lock);
1959         if (error)
1960                 goto out;
1961
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
1966         error = -EFAULT;
1967         if (!copy_to_user(l, &flock, sizeof(flock)))
1968                 error = 0;
1969   
1970 out:
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  */
1977 int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
1978                 struct flock64 __user *l)
1979 {
1980         struct file_lock *file_lock = locks_alloc_lock();
1981         struct flock64 flock;
1982         struct inode *inode;
1983         struct file *f;
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
1996         inode = file_inode(filp);
1997
1998         /* Don't allow mandatory locks on files that may be memory mapped
1999          * and shared.
2000          */
2001         if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
2002                 error = -EAGAIN;
2003                 goto out;
2004         }
2005
2006 again:
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
2031         error = do_lock_file_wait(filp, cmd, file_lock);
2032
2033         /*
2034          * Attempt to detect a close/fcntl race and recover by
2035          * releasing the lock that was just acquired.
2036          */
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) {
2041                 flock.l_type = F_UNLCK;
2042                 goto again;
2043         }
2044
2045 out:
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  */
2056 void locks_remove_posix(struct file *filp, fl_owner_t owner)
2057 {
2058         struct file_lock lock;
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          */
2065         if (!file_inode(filp)->i_flock)
2066                 return;
2067
2068         lock.fl_type = F_UNLCK;
2069         lock.fl_flags = FL_POSIX | FL_CLOSE;
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
2078         vfs_lock_file(filp, F_SETLK, &lock, NULL);
2079
2080         if (lock.fl_ops && lock.fl_ops->fl_release_private)
2081                 lock.fl_ops->fl_release_private(&lock);
2082 }
2083
2084 EXPORT_SYMBOL(locks_remove_posix);
2085
2086 /*
2087  * This function is called on the last close of an open file.
2088  */
2089 void locks_remove_flock(struct file *filp)
2090 {
2091         struct inode * inode = file_inode(filp);
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);
2107                 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2108                         fl.fl_ops->fl_release_private(&fl);
2109         }
2110
2111         lock_flocks();
2112         before = &inode->i_flock;
2113
2114         while ((fl = *before) != NULL) {
2115                 if (fl->fl_file == filp) {
2116                         if (IS_FLOCK(fl)) {
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         }
2129         unlock_flocks();
2130 }
2131
2132 /**
2133  *      posix_unblock_lock - stop waiting for a file lock
2134  *      @waiter: the lock which was waiting
2135  *
2136  *      lockd needs to block waiting for locks.
2137  */
2138 int
2139 posix_unblock_lock(struct file_lock *waiter)
2140 {
2141         int status = 0;
2142
2143         lock_flocks();
2144         if (waiter->fl_next)
2145                 __locks_delete_block(waiter);
2146         else
2147                 status = -ENOENT;
2148         unlock_flocks();
2149         return status;
2150 }
2151 EXPORT_SYMBOL(posix_unblock_lock);
2152
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  */
2160 int 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
2167 EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2168
2169 #ifdef CONFIG_PROC_FS
2170 #include <linux/proc_fs.h>
2171 #include <linux/seq_file.h>
2172
2173 static void lock_get_status(struct seq_file *f, struct file_lock *fl,
2174                             loff_t id, char *pfx)
2175 {
2176         struct inode *inode = NULL;
2177         unsigned int fl_pid;
2178
2179         if (fl->fl_nspid)
2180                 fl_pid = pid_vnr(fl->fl_nspid);
2181         else
2182                 fl_pid = fl->fl_pid;
2183
2184         if (fl->fl_file != NULL)
2185                 inode = file_inode(fl->fl_file);
2186
2187         seq_printf(f, "%lld:%s ", id, pfx);
2188         if (IS_POSIX(fl)) {
2189                 seq_printf(f, "%6s %s ",
2190                              (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
2191                              (inode == NULL) ? "*NOINODE*" :
2192                              mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
2193         } else if (IS_FLOCK(fl)) {
2194                 if (fl->fl_type & LOCK_MAND) {
2195                         seq_printf(f, "FLOCK  MSNFS     ");
2196                 } else {
2197                         seq_printf(f, "FLOCK  ADVISORY  ");
2198                 }
2199         } else if (IS_LEASE(fl)) {
2200                 seq_printf(f, "LEASE  ");
2201                 if (lease_breaking(fl))
2202                         seq_printf(f, "BREAKING  ");
2203                 else if (fl->fl_file)
2204                         seq_printf(f, "ACTIVE    ");
2205                 else
2206                         seq_printf(f, "BREAKER   ");
2207         } else {
2208                 seq_printf(f, "UNKNOWN UNKNOWN  ");
2209         }
2210         if (fl->fl_type & LOCK_MAND) {
2211                 seq_printf(f, "%s ",
2212                                (fl->fl_type & LOCK_READ)
2213                                ? (fl->fl_type & LOCK_WRITE) ? "RW   " : "READ "
2214                                : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2215         } else {
2216                 seq_printf(f, "%s ",
2217                                (lease_breaking(fl))
2218                                ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2219                                : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
2220         }
2221         if (inode) {
2222 #ifdef WE_CAN_BREAK_LSLK_NOW
2223                 seq_printf(f, "%d %s:%ld ", fl_pid,
2224                                 inode->i_sb->s_id, inode->i_ino);
2225 #else
2226                 /* userspace relies on this representation of dev_t ;-( */
2227                 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
2228                                 MAJOR(inode->i_sb->s_dev),
2229                                 MINOR(inode->i_sb->s_dev), inode->i_ino);
2230 #endif
2231         } else {
2232                 seq_printf(f, "%d <none>:0 ", fl_pid);
2233         }
2234         if (IS_POSIX(fl)) {
2235                 if (fl->fl_end == OFFSET_MAX)
2236                         seq_printf(f, "%Ld EOF\n", fl->fl_start);
2237                 else
2238                         seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
2239         } else {
2240                 seq_printf(f, "0 EOF\n");
2241         }
2242 }
2243
2244 static int locks_show(struct seq_file *f, void *v)
2245 {
2246         struct file_lock *fl, *bfl;
2247
2248         fl = list_entry(v, struct file_lock, fl_link);
2249
2250         lock_get_status(f, fl, *((loff_t *)f->private), "");
2251
2252         list_for_each_entry(bfl, &fl->fl_block, fl_block)
2253                 lock_get_status(f, bfl, *((loff_t *)f->private), " ->");
2254
2255         return 0;
2256 }
2257
2258 static void *locks_start(struct seq_file *f, loff_t *pos)
2259 {
2260         loff_t *p = f->private;
2261
2262         lock_flocks();
2263         *p = (*pos + 1);
2264         return seq_list_start(&file_lock_list, *pos);
2265 }
2266
2267 static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2268 {
2269         loff_t *p = f->private;
2270         ++*p;
2271         return seq_list_next(v, &file_lock_list, pos);
2272 }
2273
2274 static void locks_stop(struct seq_file *f, void *v)
2275 {
2276         unlock_flocks();
2277 }
2278
2279 static const struct seq_operations locks_seq_operations = {
2280         .start  = locks_start,
2281         .next   = locks_next,
2282         .stop   = locks_stop,
2283         .show   = locks_show,
2284 };
2285
2286 static int locks_open(struct inode *inode, struct file *filp)
2287 {
2288         return seq_open_private(filp, &locks_seq_operations, sizeof(loff_t));
2289 }
2290
2291 static const struct file_operations proc_locks_operations = {
2292         .open           = locks_open,
2293         .read           = seq_read,
2294         .llseek         = seq_lseek,
2295         .release        = seq_release_private,
2296 };
2297
2298 static int __init proc_locks_init(void)
2299 {
2300         proc_create("locks", 0, NULL, &proc_locks_operations);
2301         return 0;
2302 }
2303 module_init(proc_locks_init);
2304 #endif
2305
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  */
2319 int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
2320 {
2321         struct file_lock *fl;
2322         int result = 1;
2323         lock_flocks();
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         }
2340         unlock_flocks();
2341         return result;
2342 }
2343
2344 EXPORT_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  */
2359 int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
2360 {
2361         struct file_lock *fl;
2362         int result = 1;
2363         lock_flocks();
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         }
2378         unlock_flocks();
2379         return result;
2380 }
2381
2382 EXPORT_SYMBOL(lock_may_write);
2383
2384 static int __init filelock_init(void)
2385 {
2386         filelock_cache = kmem_cache_create("file_lock_cache",
2387                         sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2388
2389         return 0;
2390 }
2391
2392 core_initcall(filelock_init);