backported vs2.1.x fix to irq handling, which caused incorrect scheduler behavior
[linux-2.6.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/mandatory.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/fs.h>
120 #include <linux/init.h>
121 #include <linux/module.h>
122 #include <linux/security.h>
123 #include <linux/slab.h>
124 #include <linux/smp_lock.h>
125 #include <linux/syscalls.h>
126 #include <linux/time.h>
127 #include <linux/rcupdate.h>
128 #include <linux/vs_base.h>
129 #include <linux/vs_limit.h>
130
131 #include <asm/semaphore.h>
132 #include <asm/uaccess.h>
133
134 #define IS_POSIX(fl)    (fl->fl_flags & FL_POSIX)
135 #define IS_FLOCK(fl)    (fl->fl_flags & FL_FLOCK)
136 #define IS_LEASE(fl)    (fl->fl_flags & FL_LEASE)
137
138 int leases_enable = 1;
139 int lease_break_time = 45;
140
141 #define for_each_lock(inode, lockp) \
142         for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
143
144 static LIST_HEAD(file_lock_list);
145 static LIST_HEAD(blocked_list);
146
147 static kmem_cache_t *filelock_cache __read_mostly;
148
149 /* Allocate an empty lock structure. */
150 static struct file_lock *locks_alloc_lock(void)
151 {
152         if (!vx_locks_avail(1))
153                 return NULL;
154         return kmem_cache_alloc(filelock_cache, SLAB_KERNEL);
155 }
156
157 static void locks_release_private(struct file_lock *fl)
158 {
159         if (fl->fl_ops) {
160                 if (fl->fl_ops->fl_release_private)
161                         fl->fl_ops->fl_release_private(fl);
162                 fl->fl_ops = NULL;
163         }
164         if (fl->fl_lmops) {
165                 if (fl->fl_lmops->fl_release_private)
166                         fl->fl_lmops->fl_release_private(fl);
167                 fl->fl_lmops = NULL;
168         }
169
170 }
171
172 /* Free a lock which is not in use. */
173 static void locks_free_lock(struct file_lock *fl)
174 {
175         BUG_ON(waitqueue_active(&fl->fl_wait));
176         BUG_ON(!list_empty(&fl->fl_block));
177         BUG_ON(!list_empty(&fl->fl_link));
178
179         vx_locks_dec(fl);
180         locks_release_private(fl);
181         kmem_cache_free(filelock_cache, fl);
182 }
183
184 void locks_init_lock(struct file_lock *fl)
185 {
186         INIT_LIST_HEAD(&fl->fl_link);
187         INIT_LIST_HEAD(&fl->fl_block);
188         init_waitqueue_head(&fl->fl_wait);
189         fl->fl_next = NULL;
190         fl->fl_fasync = NULL;
191         fl->fl_owner = NULL;
192         fl->fl_pid = 0;
193         fl->fl_file = NULL;
194         fl->fl_flags = 0;
195         fl->fl_type = 0;
196         fl->fl_start = fl->fl_end = 0;
197         fl->fl_ops = NULL;
198         fl->fl_lmops = NULL;
199         fl->fl_xid = -1;
200 }
201
202 EXPORT_SYMBOL(locks_init_lock);
203
204 /*
205  * Initialises the fields of the file lock which are invariant for
206  * free file_locks.
207  */
208 static void init_once(void *foo, kmem_cache_t *cache, unsigned long flags)
209 {
210         struct file_lock *lock = (struct file_lock *) foo;
211
212         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) !=
213                                         SLAB_CTOR_CONSTRUCTOR)
214                 return;
215
216         locks_init_lock(lock);
217 }
218
219 static void locks_copy_private(struct file_lock *new, struct file_lock *fl)
220 {
221         if (fl->fl_ops) {
222                 if (fl->fl_ops->fl_copy_lock)
223                         fl->fl_ops->fl_copy_lock(new, fl);
224                 new->fl_ops = fl->fl_ops;
225         }
226         if (fl->fl_lmops) {
227                 if (fl->fl_lmops->fl_copy_lock)
228                         fl->fl_lmops->fl_copy_lock(new, fl);
229                 new->fl_lmops = fl->fl_lmops;
230         }
231 }
232
233 /*
234  * Initialize a new lock from an existing file_lock structure.
235  */
236 static void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
237 {
238         new->fl_owner = fl->fl_owner;
239         new->fl_pid = fl->fl_pid;
240         new->fl_file = NULL;
241         new->fl_flags = fl->fl_flags;
242         new->fl_type = fl->fl_type;
243         new->fl_start = fl->fl_start;
244         new->fl_end = fl->fl_end;
245         new->fl_ops = NULL;
246         new->fl_lmops = NULL;
247 }
248
249 void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
250 {
251         locks_release_private(new);
252
253         __locks_copy_lock(new, fl);
254         new->fl_file = fl->fl_file;
255         new->fl_ops = fl->fl_ops;
256         new->fl_lmops = fl->fl_lmops;
257         new->fl_xid = fl->fl_xid;
258
259         locks_copy_private(new, fl);
260 }
261
262 EXPORT_SYMBOL(locks_copy_lock);
263
264 static inline int flock_translate_cmd(int cmd) {
265         if (cmd & LOCK_MAND)
266                 return cmd & (LOCK_MAND | LOCK_RW);
267         switch (cmd) {
268         case LOCK_SH:
269                 return F_RDLCK;
270         case LOCK_EX:
271                 return F_WRLCK;
272         case LOCK_UN:
273                 return F_UNLCK;
274         }
275         return -EINVAL;
276 }
277
278 /* Fill in a file_lock structure with an appropriate FLOCK lock. */
279 static int flock_make_lock(struct file *filp, struct file_lock **lock,
280                 unsigned int cmd)
281 {
282         struct file_lock *fl;
283         int type = flock_translate_cmd(cmd);
284         if (type < 0)
285                 return type;
286         
287         fl = locks_alloc_lock();
288         if (fl == NULL)
289                 return -ENOMEM;
290
291         fl->fl_file = filp;
292         fl->fl_pid = current->tgid;
293         fl->fl_flags = FL_FLOCK;
294         fl->fl_type = type;
295         fl->fl_end = OFFSET_MAX;
296
297         fl->fl_xid = filp->f_xid;
298         vx_locks_inc(fl);
299         
300         *lock = fl;
301         return 0;
302 }
303
304 static int assign_type(struct file_lock *fl, int type)
305 {
306         switch (type) {
307         case F_RDLCK:
308         case F_WRLCK:
309         case F_UNLCK:
310                 fl->fl_type = type;
311                 break;
312         default:
313                 return -EINVAL;
314         }
315         return 0;
316 }
317
318 /* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
319  * style lock.
320  */
321 static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
322                                struct flock *l)
323 {
324         off_t start, end;
325
326         switch (l->l_whence) {
327         case 0: /*SEEK_SET*/
328                 start = 0;
329                 break;
330         case 1: /*SEEK_CUR*/
331                 start = filp->f_pos;
332                 break;
333         case 2: /*SEEK_END*/
334                 start = i_size_read(filp->f_dentry->d_inode);
335                 break;
336         default:
337                 return -EINVAL;
338         }
339
340         /* POSIX-1996 leaves the case l->l_len < 0 undefined;
341            POSIX-2001 defines it. */
342         start += l->l_start;
343         if (start < 0)
344                 return -EINVAL;
345         fl->fl_end = OFFSET_MAX;
346         if (l->l_len > 0) {
347                 end = start + l->l_len - 1;
348                 fl->fl_end = end;
349         } else if (l->l_len < 0) {
350                 end = start - 1;
351                 fl->fl_end = end;
352                 start += l->l_len;
353                 if (start < 0)
354                         return -EINVAL;
355         }
356         fl->fl_start = start;   /* we record the absolute position */
357         if (fl->fl_end < fl->fl_start)
358                 return -EOVERFLOW;
359         
360         fl->fl_owner = current->files;
361         fl->fl_pid = current->tgid;
362         fl->fl_file = filp;
363         fl->fl_flags = FL_POSIX;
364         fl->fl_ops = NULL;
365         fl->fl_lmops = NULL;
366
367         return assign_type(fl, l->l_type);
368 }
369
370 #if BITS_PER_LONG == 32
371 static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
372                                  struct flock64 *l)
373 {
374         loff_t start;
375
376         switch (l->l_whence) {
377         case 0: /*SEEK_SET*/
378                 start = 0;
379                 break;
380         case 1: /*SEEK_CUR*/
381                 start = filp->f_pos;
382                 break;
383         case 2: /*SEEK_END*/
384                 start = i_size_read(filp->f_dentry->d_inode);
385                 break;
386         default:
387                 return -EINVAL;
388         }
389
390         start += l->l_start;
391         if (start < 0)
392                 return -EINVAL;
393         fl->fl_end = OFFSET_MAX;
394         if (l->l_len > 0) {
395                 fl->fl_end = start + l->l_len - 1;
396         } else if (l->l_len < 0) {
397                 fl->fl_end = start - 1;
398                 start += l->l_len;
399                 if (start < 0)
400                         return -EINVAL;
401         }
402         fl->fl_start = start;   /* we record the absolute position */
403         if (fl->fl_end < fl->fl_start)
404                 return -EOVERFLOW;
405         
406         fl->fl_owner = current->files;
407         fl->fl_pid = current->tgid;
408         fl->fl_file = filp;
409         fl->fl_flags = FL_POSIX;
410         fl->fl_ops = NULL;
411         fl->fl_lmops = NULL;
412
413         switch (l->l_type) {
414         case F_RDLCK:
415         case F_WRLCK:
416         case F_UNLCK:
417                 fl->fl_type = l->l_type;
418                 break;
419         default:
420                 return -EINVAL;
421         }
422
423         return (0);
424 }
425 #endif
426
427 /* default lease lock manager operations */
428 static void lease_break_callback(struct file_lock *fl)
429 {
430         kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
431 }
432
433 static void lease_release_private_callback(struct file_lock *fl)
434 {
435         if (!fl->fl_file)
436                 return;
437
438         f_delown(fl->fl_file);
439         fl->fl_file->f_owner.signum = 0;
440 }
441
442 static int lease_mylease_callback(struct file_lock *fl, struct file_lock *try)
443 {
444         return fl->fl_file == try->fl_file;
445 }
446
447 static struct lock_manager_operations lease_manager_ops = {
448         .fl_break = lease_break_callback,
449         .fl_release_private = lease_release_private_callback,
450         .fl_mylease = lease_mylease_callback,
451         .fl_change = lease_modify,
452 };
453
454 /*
455  * Initialize a lease, use the default lock manager operations
456  */
457 static int lease_init(struct file *filp, int type, struct file_lock *fl)
458  {
459         if (assign_type(fl, type) != 0)
460                 return -EINVAL;
461
462         fl->fl_owner = current->files;
463         fl->fl_pid = current->tgid;
464         fl->fl_xid = vx_current_xid();
465
466         fl->fl_file = filp;
467         fl->fl_flags = FL_LEASE;
468         fl->fl_start = 0;
469         fl->fl_end = OFFSET_MAX;
470         fl->fl_ops = NULL;
471         fl->fl_lmops = &lease_manager_ops;
472         return 0;
473 }
474
475 /* Allocate a file_lock initialised to this type of lease */
476 static int lease_alloc(struct file *filp, int type, struct file_lock **flp)
477 {
478         struct file_lock *fl = locks_alloc_lock();
479         int error = -ENOMEM;
480
481         if (fl == NULL)
482                 goto out;
483
484         fl->fl_xid = vx_current_xid();
485         vx_locks_inc(fl);
486         error = lease_init(filp, type, fl);
487         if (error) {
488                 locks_free_lock(fl);
489                 fl = NULL;
490         }
491 out:
492         *flp = fl;
493         return error;
494 }
495
496 /* Check if two locks overlap each other.
497  */
498 static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
499 {
500         return ((fl1->fl_end >= fl2->fl_start) &&
501                 (fl2->fl_end >= fl1->fl_start));
502 }
503
504 /*
505  * Check whether two locks have the same owner.
506  */
507 static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
508 {
509         if (fl1->fl_lmops && fl1->fl_lmops->fl_compare_owner)
510                 return fl2->fl_lmops == fl1->fl_lmops &&
511                         fl1->fl_lmops->fl_compare_owner(fl1, fl2);
512         return fl1->fl_owner == fl2->fl_owner;
513 }
514
515 /* Remove waiter from blocker's block list.
516  * When blocker ends up pointing to itself then the list is empty.
517  */
518 static void __locks_delete_block(struct file_lock *waiter)
519 {
520         list_del_init(&waiter->fl_block);
521         list_del_init(&waiter->fl_link);
522         waiter->fl_next = NULL;
523 }
524
525 /*
526  */
527 static void locks_delete_block(struct file_lock *waiter)
528 {
529         lock_kernel();
530         __locks_delete_block(waiter);
531         unlock_kernel();
532 }
533
534 /* Insert waiter into blocker's block list.
535  * We use a circular list so that processes can be easily woken up in
536  * the order they blocked. The documentation doesn't require this but
537  * it seems like the reasonable thing to do.
538  */
539 static void locks_insert_block(struct file_lock *blocker, 
540                                struct file_lock *waiter)
541 {
542         BUG_ON(!list_empty(&waiter->fl_block));
543         list_add_tail(&waiter->fl_block, &blocker->fl_block);
544         waiter->fl_next = blocker;
545         if (IS_POSIX(blocker))
546                 list_add(&waiter->fl_link, &blocked_list);
547 }
548
549 /* Wake up processes blocked waiting for blocker.
550  * If told to wait then schedule the processes until the block list
551  * is empty, otherwise empty the block list ourselves.
552  */
553 static void locks_wake_up_blocks(struct file_lock *blocker)
554 {
555         while (!list_empty(&blocker->fl_block)) {
556                 struct file_lock *waiter = list_entry(blocker->fl_block.next,
557                                 struct file_lock, fl_block);
558                 __locks_delete_block(waiter);
559                 if (waiter->fl_lmops && waiter->fl_lmops->fl_notify)
560                         waiter->fl_lmops->fl_notify(waiter);
561                 else
562                         wake_up(&waiter->fl_wait);
563         }
564 }
565
566 /* Insert file lock fl into an inode's lock list at the position indicated
567  * by pos. At the same time add the lock to the global file lock list.
568  */
569 static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
570 {
571         list_add(&fl->fl_link, &file_lock_list);
572
573         /* insert into file's list */
574         fl->fl_next = *pos;
575         *pos = fl;
576
577         if (fl->fl_ops && fl->fl_ops->fl_insert)
578                 fl->fl_ops->fl_insert(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         *thisfl_p = fl->fl_next;
592         fl->fl_next = NULL;
593         list_del_init(&fl->fl_link);
594
595         fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
596         if (fl->fl_fasync != NULL) {
597                 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
598                 fl->fl_fasync = NULL;
599         }
600
601         if (fl->fl_ops && fl->fl_ops->fl_remove)
602                 fl->fl_ops->fl_remove(fl);
603
604         locks_wake_up_blocks(fl);
605         locks_free_lock(fl);
606 }
607
608 /* Determine if lock sys_fl blocks lock caller_fl. Common functionality
609  * checks for shared/exclusive status of overlapping locks.
610  */
611 static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
612 {
613         if (sys_fl->fl_type == F_WRLCK)
614                 return 1;
615         if (caller_fl->fl_type == F_WRLCK)
616                 return 1;
617         return 0;
618 }
619
620 /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
621  * checking before calling the locks_conflict().
622  */
623 static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
624 {
625         /* POSIX locks owned by the same process do not conflict with
626          * each other.
627          */
628         if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
629                 return (0);
630
631         /* Check whether they overlap */
632         if (!locks_overlap(caller_fl, sys_fl))
633                 return 0;
634
635         return (locks_conflict(caller_fl, sys_fl));
636 }
637
638 /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
639  * checking before calling the locks_conflict().
640  */
641 static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
642 {
643         /* FLOCK locks referring to the same filp do not conflict with
644          * each other.
645          */
646         if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
647                 return (0);
648         if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
649                 return 0;
650
651         return (locks_conflict(caller_fl, sys_fl));
652 }
653
654 static int interruptible_sleep_on_locked(wait_queue_head_t *fl_wait, int timeout)
655 {
656         int result = 0;
657         DECLARE_WAITQUEUE(wait, current);
658
659         __set_current_state(TASK_INTERRUPTIBLE);
660         add_wait_queue(fl_wait, &wait);
661         if (timeout == 0)
662                 schedule();
663         else
664                 result = schedule_timeout(timeout);
665         if (signal_pending(current))
666                 result = -ERESTARTSYS;
667         remove_wait_queue(fl_wait, &wait);
668         __set_current_state(TASK_RUNNING);
669         return result;
670 }
671
672 static int locks_block_on_timeout(struct file_lock *blocker, struct file_lock *waiter, int time)
673 {
674         int result;
675         locks_insert_block(blocker, waiter);
676         result = interruptible_sleep_on_locked(&waiter->fl_wait, time);
677         __locks_delete_block(waiter);
678         return result;
679 }
680
681 int
682 posix_test_lock(struct file *filp, struct file_lock *fl,
683                 struct file_lock *conflock)
684 {
685         struct file_lock *cfl;
686
687         lock_kernel();
688         for (cfl = filp->f_dentry->d_inode->i_flock; cfl; cfl = cfl->fl_next) {
689                 if (!IS_POSIX(cfl))
690                         continue;
691                 if (posix_locks_conflict(cfl, fl))
692                         break;
693         }
694         if (cfl) {
695                 __locks_copy_lock(conflock, cfl);
696                 unlock_kernel();
697                 return 1;
698         }
699         unlock_kernel();
700         return 0;
701 }
702
703 EXPORT_SYMBOL(posix_test_lock);
704
705 /* This function tests for deadlock condition before putting a process to
706  * sleep. The detection scheme is no longer recursive. Recursive was neat,
707  * but dangerous - we risked stack corruption if the lock data was bad, or
708  * if the recursion was too deep for any other reason.
709  *
710  * We rely on the fact that a task can only be on one lock's wait queue
711  * at a time. When we find blocked_task on a wait queue we can re-search
712  * with blocked_task equal to that queue's owner, until either blocked_task
713  * isn't found, or blocked_task is found on a queue owned by my_task.
714  *
715  * Note: the above assumption may not be true when handling lock requests
716  * from a broken NFS client. But broken NFS clients have a lot more to
717  * worry about than proper deadlock detection anyway... --okir
718  */
719 static int posix_locks_deadlock(struct file_lock *caller_fl,
720                                 struct file_lock *block_fl)
721 {
722         struct list_head *tmp;
723
724 next_task:
725         if (posix_same_owner(caller_fl, block_fl))
726                 return 1;
727         list_for_each(tmp, &blocked_list) {
728                 struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
729                 if (posix_same_owner(fl, block_fl)) {
730                         fl = fl->fl_next;
731                         block_fl = fl;
732                         goto next_task;
733                 }
734         }
735         return 0;
736 }
737
738 /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
739  * at the head of the list, but that's secret knowledge known only to
740  * flock_lock_file and posix_lock_file.
741  *
742  * Note that if called with an FL_EXISTS argument, the caller may determine
743  * whether or not a lock was successfully freed by testing the return
744  * value for -ENOENT.
745  */
746 static int flock_lock_file(struct file *filp, struct file_lock *request)
747 {
748         struct file_lock *new_fl = NULL;
749         struct file_lock **before;
750         struct inode * inode = filp->f_dentry->d_inode;
751         int error = 0;
752         int found = 0;
753
754         lock_kernel();
755         if (request->fl_flags & FL_ACCESS)
756                 goto find_conflict;
757         for_each_lock(inode, before) {
758                 struct file_lock *fl = *before;
759                 if (IS_POSIX(fl))
760                         break;
761                 if (IS_LEASE(fl))
762                         continue;
763                 if (filp != fl->fl_file)
764                         continue;
765                 if (request->fl_type == fl->fl_type)
766                         goto out;
767                 found = 1;
768                 locks_delete_lock(before);
769                 break;
770         }
771
772         if (request->fl_type == F_UNLCK) {
773                 if ((request->fl_flags & FL_EXISTS) && !found)
774                         error = -ENOENT;
775                 goto out;
776         }
777
778         error = -ENOMEM;
779         new_fl = locks_alloc_lock();
780         if (new_fl == NULL)
781                 goto out;
782         /*
783          * If a higher-priority process was blocked on the old file lock,
784          * give it the opportunity to lock the file.
785          */
786         if (found)
787                 cond_resched();
788
789 find_conflict:
790         for_each_lock(inode, before) {
791                 struct file_lock *fl = *before;
792                 if (IS_POSIX(fl))
793                         break;
794                 if (IS_LEASE(fl))
795                         continue;
796                 if (!flock_locks_conflict(request, fl))
797                         continue;
798                 error = -EAGAIN;
799                 if (request->fl_flags & FL_SLEEP)
800                         locks_insert_block(fl, request);
801                 goto out;
802         }
803         if (request->fl_flags & FL_ACCESS)
804                 goto out;
805         locks_copy_lock(new_fl, request);
806         vx_locks_inc(new_fl);
807         locks_insert_lock(&inode->i_flock, new_fl);
808         new_fl = NULL;
809         error = 0;
810
811 out:
812         unlock_kernel();
813         if (new_fl)
814                 locks_free_lock(new_fl);
815         return error;
816 }
817
818 static int __posix_lock_file_conf(struct inode *inode, struct file_lock *request,
819         struct file_lock *conflock, xid_t xid)
820 {
821         struct file_lock *fl;
822         struct file_lock *new_fl = NULL;
823         struct file_lock *new_fl2 = NULL;
824         struct file_lock *left = NULL;
825         struct file_lock *right = NULL;
826         struct file_lock **before;
827         int error, added = 0;
828
829         /*
830          * We may need two file_lock structures for this operation,
831          * so we get them in advance to avoid races.
832          *
833          * In some cases we can be sure, that no new locks will be needed
834          */
835         if (!(request->fl_flags & FL_ACCESS) &&
836             (request->fl_type != F_UNLCK ||
837              request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
838                 new_fl = locks_alloc_lock();
839                 new_fl->fl_xid = xid;
840                 vx_locks_inc(new_fl);
841                 new_fl2 = locks_alloc_lock();
842                 new_fl2->fl_xid = xid;
843                 vx_locks_inc(new_fl2);
844         }
845
846         lock_kernel();
847         if (request->fl_type != F_UNLCK) {
848                 for_each_lock(inode, before) {
849                         struct file_lock *fl = *before;
850                         if (!IS_POSIX(fl))
851                                 continue;
852                         if (!posix_locks_conflict(request, fl))
853                                 continue;
854                         if (conflock)
855                                 locks_copy_lock(conflock, fl);
856                         error = -EAGAIN;
857                         if (!(request->fl_flags & FL_SLEEP))
858                                 goto out;
859                         error = -EDEADLK;
860                         if (posix_locks_deadlock(request, fl))
861                                 goto out;
862                         error = -EAGAIN;
863                         locks_insert_block(fl, request);
864                         goto out;
865                 }
866         }
867
868         /* If we're just looking for a conflict, we're done. */
869         error = 0;
870         if (request->fl_flags & FL_ACCESS)
871                 goto out;
872
873         /*
874          * Find the first old lock with the same owner as the new lock.
875          */
876         
877         before = &inode->i_flock;
878
879         /* First skip locks owned by other processes.  */
880         while ((fl = *before) && (!IS_POSIX(fl) ||
881                                   !posix_same_owner(request, fl))) {
882                 before = &fl->fl_next;
883         }
884
885         /* Process locks with this owner.  */
886         while ((fl = *before) && posix_same_owner(request, fl)) {
887                 /* Detect adjacent or overlapping regions (if same lock type)
888                  */
889                 if (request->fl_type == fl->fl_type) {
890                         /* In all comparisons of start vs end, use
891                          * "start - 1" rather than "end + 1". If end
892                          * is OFFSET_MAX, end + 1 will become negative.
893                          */
894                         if (fl->fl_end < request->fl_start - 1)
895                                 goto next_lock;
896                         /* If the next lock in the list has entirely bigger
897                          * addresses than the new one, insert the lock here.
898                          */
899                         if (fl->fl_start - 1 > request->fl_end)
900                                 break;
901
902                         /* If we come here, the new and old lock are of the
903                          * same type and adjacent or overlapping. Make one
904                          * lock yielding from the lower start address of both
905                          * locks to the higher end address.
906                          */
907                         if (fl->fl_start > request->fl_start)
908                                 fl->fl_start = request->fl_start;
909                         else
910                                 request->fl_start = fl->fl_start;
911                         if (fl->fl_end < request->fl_end)
912                                 fl->fl_end = request->fl_end;
913                         else
914                                 request->fl_end = fl->fl_end;
915                         if (added) {
916                                 locks_delete_lock(before);
917                                 continue;
918                         }
919                         request = fl;
920                         added = 1;
921                 }
922                 else {
923                         /* Processing for different lock types is a bit
924                          * more complex.
925                          */
926                         if (fl->fl_end < request->fl_start)
927                                 goto next_lock;
928                         if (fl->fl_start > request->fl_end)
929                                 break;
930                         if (request->fl_type == F_UNLCK)
931                                 added = 1;
932                         if (fl->fl_start < request->fl_start)
933                                 left = fl;
934                         /* If the next lock in the list has a higher end
935                          * address than the new one, insert the new one here.
936                          */
937                         if (fl->fl_end > request->fl_end) {
938                                 right = fl;
939                                 break;
940                         }
941                         if (fl->fl_start >= request->fl_start) {
942                                 /* The new lock completely replaces an old
943                                  * one (This may happen several times).
944                                  */
945                                 if (added) {
946                                         locks_delete_lock(before);
947                                         continue;
948                                 }
949                                 /* Replace the old lock with the new one.
950                                  * Wake up anybody waiting for the old one,
951                                  * as the change in lock type might satisfy
952                                  * their needs.
953                                  */
954                                 locks_wake_up_blocks(fl);
955                                 fl->fl_start = request->fl_start;
956                                 fl->fl_end = request->fl_end;
957                                 fl->fl_type = request->fl_type;
958                                 locks_release_private(fl);
959                                 locks_copy_private(fl, request);
960                                 request = fl;
961                                 added = 1;
962                         }
963                 }
964                 /* Go on to next lock.
965                  */
966         next_lock:
967                 before = &fl->fl_next;
968         }
969
970         /*
971          * The above code only modifies existing locks in case of
972          * merging or replacing.  If new lock(s) need to be inserted
973          * all modifications are done bellow this, so it's safe yet to
974          * bail out.
975          */
976         error = -ENOLCK; /* "no luck" */
977         if (right && left == right && !new_fl2)
978                 goto out;
979
980         error = 0;
981         if (!added) {
982                 if (request->fl_type == F_UNLCK) {
983                         if (request->fl_flags & FL_EXISTS)
984                                 error = -ENOENT;
985                         goto out;
986                 }
987
988                 if (!new_fl) {
989                         error = -ENOLCK;
990                         goto out;
991                 }
992                 locks_copy_lock(new_fl, request);
993                 locks_insert_lock(before, new_fl);
994                 new_fl = NULL;
995         }
996         if (right) {
997                 if (left == right) {
998                         /* The new lock breaks the old one in two pieces,
999                          * so we have to use the second new lock.
1000                          */
1001                         left = new_fl2;
1002                         new_fl2 = NULL;
1003                         locks_copy_lock(left, right);
1004                         locks_insert_lock(before, left);
1005                 }
1006                 right->fl_start = request->fl_end + 1;
1007                 locks_wake_up_blocks(right);
1008         }
1009         if (left) {
1010                 left->fl_end = request->fl_start - 1;
1011                 locks_wake_up_blocks(left);
1012         }
1013  out:
1014         unlock_kernel();
1015         /*
1016          * Free any unused locks.
1017          */
1018         if (new_fl)
1019                 locks_free_lock(new_fl);
1020         if (new_fl2)
1021                 locks_free_lock(new_fl2);
1022         return error;
1023 }
1024
1025 /**
1026  * posix_lock_file - Apply a POSIX-style lock to a file
1027  * @filp: The file to apply the lock to
1028  * @fl: The lock to be applied
1029  *
1030  * Add a POSIX style lock to a file.
1031  * We merge adjacent & overlapping locks whenever possible.
1032  * POSIX locks are sorted by owner task, then by starting address
1033  *
1034  * Note that if called with an FL_EXISTS argument, the caller may determine
1035  * whether or not a lock was successfully freed by testing the return
1036  * value for -ENOENT.
1037  */
1038 int posix_lock_file(struct file *filp, struct file_lock *fl)
1039 {
1040         return __posix_lock_file_conf(filp->f_dentry->d_inode,
1041                 fl, NULL, filp->f_xid);
1042 }
1043 EXPORT_SYMBOL(posix_lock_file);
1044
1045 /**
1046  * posix_lock_file_conf - Apply a POSIX-style lock to a file
1047  * @filp: The file to apply the lock to
1048  * @fl: The lock to be applied
1049  * @conflock: Place to return a copy of the conflicting lock, if found.
1050  *
1051  * Except for the conflock parameter, acts just like posix_lock_file.
1052  */
1053 int posix_lock_file_conf(struct file *filp, struct file_lock *fl,
1054                         struct file_lock *conflock)
1055 {
1056         return __posix_lock_file_conf(filp->f_dentry->d_inode,
1057                 fl, conflock, filp->f_xid);
1058 }
1059 EXPORT_SYMBOL(posix_lock_file_conf);
1060
1061 /**
1062  * posix_lock_file_wait - Apply a POSIX-style lock to a file
1063  * @filp: The file to apply the lock to
1064  * @fl: The lock to be applied
1065  *
1066  * Add a POSIX style lock to a file.
1067  * We merge adjacent & overlapping locks whenever possible.
1068  * POSIX locks are sorted by owner task, then by starting address
1069  */
1070 int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
1071 {
1072         int error;
1073         might_sleep ();
1074         for (;;) {
1075                 error = posix_lock_file(filp, fl);
1076                 if ((error != -EAGAIN) || !(fl->fl_flags & FL_SLEEP))
1077                         break;
1078                 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1079                 if (!error)
1080                         continue;
1081
1082                 locks_delete_block(fl);
1083                 break;
1084         }
1085         return error;
1086 }
1087 EXPORT_SYMBOL(posix_lock_file_wait);
1088
1089 /**
1090  * locks_mandatory_locked - Check for an active lock
1091  * @inode: the file to check
1092  *
1093  * Searches the inode's list of locks to find any POSIX locks which conflict.
1094  * This function is called from locks_verify_locked() only.
1095  */
1096 int locks_mandatory_locked(struct inode *inode)
1097 {
1098         fl_owner_t owner = current->files;
1099         struct file_lock *fl;
1100
1101         /*
1102          * Search the lock list for this inode for any POSIX locks.
1103          */
1104         lock_kernel();
1105         for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1106                 if (!IS_POSIX(fl))
1107                         continue;
1108                 if (fl->fl_owner != owner)
1109                         break;
1110         }
1111         unlock_kernel();
1112         return fl ? -EAGAIN : 0;
1113 }
1114
1115 /**
1116  * locks_mandatory_area - Check for a conflicting lock
1117  * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
1118  *              for shared
1119  * @inode:      the file to check
1120  * @filp:       how the file was opened (if it was)
1121  * @offset:     start of area to check
1122  * @count:      length of area to check
1123  *
1124  * Searches the inode's list of locks to find any POSIX locks which conflict.
1125  * This function is called from rw_verify_area() and
1126  * locks_verify_truncate().
1127  */
1128 int locks_mandatory_area(int read_write, struct inode *inode,
1129                          struct file *filp, loff_t offset,
1130                          size_t count)
1131 {
1132         struct file_lock fl;
1133         int error;
1134
1135         locks_init_lock(&fl);
1136         fl.fl_owner = current->files;
1137         fl.fl_pid = current->tgid;
1138         fl.fl_file = filp;
1139         fl.fl_flags = FL_POSIX | FL_ACCESS;
1140         if (filp && !(filp->f_flags & O_NONBLOCK))
1141                 fl.fl_flags |= FL_SLEEP;
1142         fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
1143         fl.fl_start = offset;
1144         fl.fl_end = offset + count - 1;
1145
1146         for (;;) {
1147                 error = __posix_lock_file_conf(inode, &fl, NULL, filp->f_xid);
1148                 if (error != -EAGAIN)
1149                         break;
1150                 if (!(fl.fl_flags & FL_SLEEP))
1151                         break;
1152                 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1153                 if (!error) {
1154                         /*
1155                          * If we've been sleeping someone might have
1156                          * changed the permissions behind our back.
1157                          */
1158                         if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
1159                                 continue;
1160                 }
1161
1162                 locks_delete_block(&fl);
1163                 break;
1164         }
1165
1166         return error;
1167 }
1168
1169 EXPORT_SYMBOL(locks_mandatory_area);
1170
1171 /* We already had a lease on this file; just change its type */
1172 int lease_modify(struct file_lock **before, int arg)
1173 {
1174         struct file_lock *fl = *before;
1175         int error = assign_type(fl, arg);
1176
1177         if (error)
1178                 return error;
1179         locks_wake_up_blocks(fl);
1180         if (arg == F_UNLCK)
1181                 locks_delete_lock(before);
1182         return 0;
1183 }
1184
1185 EXPORT_SYMBOL(lease_modify);
1186
1187 static void time_out_leases(struct inode *inode)
1188 {
1189         struct file_lock **before;
1190         struct file_lock *fl;
1191
1192         before = &inode->i_flock;
1193         while ((fl = *before) && IS_LEASE(fl) && (fl->fl_type & F_INPROGRESS)) {
1194                 if ((fl->fl_break_time == 0)
1195                                 || time_before(jiffies, fl->fl_break_time)) {
1196                         before = &fl->fl_next;
1197                         continue;
1198                 }
1199                 lease_modify(before, fl->fl_type & ~F_INPROGRESS);
1200                 if (fl == *before)      /* lease_modify may have freed fl */
1201                         before = &fl->fl_next;
1202         }
1203 }
1204
1205 /**
1206  *      __break_lease   -       revoke all outstanding leases on file
1207  *      @inode: the inode of the file to return
1208  *      @mode: the open mode (read or write)
1209  *
1210  *      break_lease (inlined for speed) has checked there already
1211  *      is a lease on this file.  Leases are broken on a call to open()
1212  *      or truncate().  This function can sleep unless you
1213  *      specified %O_NONBLOCK to your open().
1214  */
1215 int __break_lease(struct inode *inode, unsigned int mode)
1216 {
1217         int error = 0, future;
1218         struct file_lock *new_fl, *flock;
1219         struct file_lock *fl;
1220         int alloc_err;
1221         unsigned long break_time;
1222         int i_have_this_lease = 0;
1223
1224         alloc_err = lease_alloc(NULL, mode & FMODE_WRITE ? F_WRLCK : F_RDLCK,
1225                         &new_fl);
1226
1227         lock_kernel();
1228
1229         time_out_leases(inode);
1230
1231         flock = inode->i_flock;
1232         if ((flock == NULL) || !IS_LEASE(flock))
1233                 goto out;
1234
1235         for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
1236                 if (fl->fl_owner == current->files)
1237                         i_have_this_lease = 1;
1238
1239         if (mode & FMODE_WRITE) {
1240                 /* If we want write access, we have to revoke any lease. */
1241                 future = F_UNLCK | F_INPROGRESS;
1242         } else if (flock->fl_type & F_INPROGRESS) {
1243                 /* If the lease is already being broken, we just leave it */
1244                 future = flock->fl_type;
1245         } else if (flock->fl_type & F_WRLCK) {
1246                 /* Downgrade the exclusive lease to a read-only lease. */
1247                 future = F_RDLCK | F_INPROGRESS;
1248         } else {
1249                 /* the existing lease was read-only, so we can read too. */
1250                 goto out;
1251         }
1252
1253         if (alloc_err && !i_have_this_lease && ((mode & O_NONBLOCK) == 0)) {
1254                 error = alloc_err;
1255                 goto out;
1256         }
1257
1258         break_time = 0;
1259         if (lease_break_time > 0) {
1260                 break_time = jiffies + lease_break_time * HZ;
1261                 if (break_time == 0)
1262                         break_time++;   /* so that 0 means no break time */
1263         }
1264
1265         for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1266                 if (fl->fl_type != future) {
1267                         fl->fl_type = future;
1268                         fl->fl_break_time = break_time;
1269                         /* lease must have lmops break callback */
1270                         fl->fl_lmops->fl_break(fl);
1271                 }
1272         }
1273
1274         if (i_have_this_lease || (mode & O_NONBLOCK)) {
1275                 error = -EWOULDBLOCK;
1276                 goto out;
1277         }
1278
1279 restart:
1280         break_time = flock->fl_break_time;
1281         if (break_time != 0) {
1282                 break_time -= jiffies;
1283                 if (break_time == 0)
1284                         break_time++;
1285         }
1286         error = locks_block_on_timeout(flock, new_fl, break_time);
1287         if (error >= 0) {
1288                 if (error == 0)
1289                         time_out_leases(inode);
1290                 /* Wait for the next lease that has not been broken yet */
1291                 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1292                                 flock = flock->fl_next) {
1293                         if (flock->fl_type & F_INPROGRESS)
1294                                 goto restart;
1295                 }
1296                 error = 0;
1297         }
1298
1299 out:
1300         unlock_kernel();
1301         if (!alloc_err)
1302                 locks_free_lock(new_fl);
1303         return error;
1304 }
1305
1306 EXPORT_SYMBOL(__break_lease);
1307
1308 /**
1309  *      lease_get_mtime
1310  *      @inode: the inode
1311  *      @time:  pointer to a timespec which will contain the last modified time
1312  *
1313  * This is to force NFS clients to flush their caches for files with
1314  * exclusive leases.  The justification is that if someone has an
1315  * exclusive lease, then they could be modifiying it.
1316  */
1317 void lease_get_mtime(struct inode *inode, struct timespec *time)
1318 {
1319         struct file_lock *flock = inode->i_flock;
1320         if (flock && IS_LEASE(flock) && (flock->fl_type & F_WRLCK))
1321                 *time = current_fs_time(inode->i_sb);
1322         else
1323                 *time = inode->i_mtime;
1324 }
1325
1326 EXPORT_SYMBOL(lease_get_mtime);
1327
1328 /**
1329  *      fcntl_getlease - Enquire what lease is currently active
1330  *      @filp: the file
1331  *
1332  *      The value returned by this function will be one of
1333  *      (if no lease break is pending):
1334  *
1335  *      %F_RDLCK to indicate a shared lease is held.
1336  *
1337  *      %F_WRLCK to indicate an exclusive lease is held.
1338  *
1339  *      %F_UNLCK to indicate no lease is held.
1340  *
1341  *      (if a lease break is pending):
1342  *
1343  *      %F_RDLCK to indicate an exclusive lease needs to be
1344  *              changed to a shared lease (or removed).
1345  *
1346  *      %F_UNLCK to indicate the lease needs to be removed.
1347  *
1348  *      XXX: sfr & willy disagree over whether F_INPROGRESS
1349  *      should be returned to userspace.
1350  */
1351 int fcntl_getlease(struct file *filp)
1352 {
1353         struct file_lock *fl;
1354         int type = F_UNLCK;
1355
1356         lock_kernel();
1357         time_out_leases(filp->f_dentry->d_inode);
1358         for (fl = filp->f_dentry->d_inode->i_flock; fl && IS_LEASE(fl);
1359                         fl = fl->fl_next) {
1360                 if (fl->fl_file == filp) {
1361                         type = fl->fl_type & ~F_INPROGRESS;
1362                         break;
1363                 }
1364         }
1365         unlock_kernel();
1366         return type;
1367 }
1368
1369 /**
1370  *      __setlease      -       sets a lease on an open file
1371  *      @filp: file pointer
1372  *      @arg: type of lease to obtain
1373  *      @flp: input - file_lock to use, output - file_lock inserted
1374  *
1375  *      The (input) flp->fl_lmops->fl_break function is required
1376  *      by break_lease().
1377  *
1378  *      Called with kernel lock held.
1379  */
1380 static int __setlease(struct file *filp, long arg, struct file_lock **flp)
1381 {
1382         struct file_lock *fl, **before, **my_before = NULL, *lease;
1383         struct dentry *dentry = filp->f_dentry;
1384         struct inode *inode = dentry->d_inode;
1385         int error, rdlease_count = 0, wrlease_count = 0;
1386
1387         time_out_leases(inode);
1388
1389         error = -EINVAL;
1390         if (!flp || !(*flp) || !(*flp)->fl_lmops || !(*flp)->fl_lmops->fl_break)
1391                 goto out;
1392
1393         lease = *flp;
1394
1395         error = -EAGAIN;
1396         if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
1397                 goto out;
1398         if ((arg == F_WRLCK)
1399             && ((atomic_read(&dentry->d_count) > 1)
1400                 || (atomic_read(&inode->i_count) > 1)))
1401                 goto out;
1402
1403         /*
1404          * At this point, we know that if there is an exclusive
1405          * lease on this file, then we hold it on this filp
1406          * (otherwise our open of this file would have blocked).
1407          * And if we are trying to acquire an exclusive lease,
1408          * then the file is not open by anyone (including us)
1409          * except for this filp.
1410          */
1411         for (before = &inode->i_flock;
1412                         ((fl = *before) != NULL) && IS_LEASE(fl);
1413                         before = &fl->fl_next) {
1414                 if (lease->fl_lmops->fl_mylease(fl, lease))
1415                         my_before = before;
1416                 else if (fl->fl_type == (F_INPROGRESS | F_UNLCK))
1417                         /*
1418                          * Someone is in the process of opening this
1419                          * file for writing so we may not take an
1420                          * exclusive lease on it.
1421                          */
1422                         wrlease_count++;
1423                 else
1424                         rdlease_count++;
1425         }
1426
1427         if ((arg == F_RDLCK && (wrlease_count > 0)) ||
1428             (arg == F_WRLCK && ((rdlease_count + wrlease_count) > 0)))
1429                 goto out;
1430
1431         if (my_before != NULL) {
1432                 *flp = *my_before;
1433                 error = lease->fl_lmops->fl_change(my_before, arg);
1434                 goto out;
1435         }
1436
1437         error = 0;
1438         if (arg == F_UNLCK)
1439                 goto out;
1440
1441         error = -EINVAL;
1442         if (!leases_enable)
1443                 goto out;
1444
1445         error = -ENOMEM;
1446         fl = locks_alloc_lock();
1447         if (fl == NULL)
1448                 goto out;
1449
1450         locks_copy_lock(fl, lease);
1451
1452         locks_insert_lock(before, fl);
1453
1454         *flp = fl;
1455         error = 0;
1456 out:
1457         return error;
1458 }
1459
1460  /**
1461  *      setlease        -       sets a lease on an open file
1462  *      @filp: file pointer
1463  *      @arg: type of lease to obtain
1464  *      @lease: file_lock to use
1465  *
1466  *      Call this to establish a lease on the file.
1467  *      The fl_lmops fl_break function is required by break_lease
1468  */
1469
1470 int setlease(struct file *filp, long arg, struct file_lock **lease)
1471 {
1472         struct dentry *dentry = filp->f_dentry;
1473         struct inode *inode = dentry->d_inode;
1474         int error;
1475
1476         if ((current->fsuid != inode->i_uid) && !capable(CAP_LEASE))
1477                 return -EACCES;
1478         if (!S_ISREG(inode->i_mode))
1479                 return -EINVAL;
1480         error = security_file_lock(filp, arg);
1481         if (error)
1482                 return error;
1483
1484         lock_kernel();
1485         error = __setlease(filp, arg, lease);
1486         unlock_kernel();
1487
1488         return error;
1489 }
1490
1491 EXPORT_SYMBOL(setlease);
1492
1493 /**
1494  *      fcntl_setlease  -       sets a lease on an open file
1495  *      @fd: open file descriptor
1496  *      @filp: file pointer
1497  *      @arg: type of lease to obtain
1498  *
1499  *      Call this fcntl to establish a lease on the file.
1500  *      Note that you also need to call %F_SETSIG to
1501  *      receive a signal when the lease is broken.
1502  */
1503 int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1504 {
1505         struct file_lock fl, *flp = &fl;
1506         struct dentry *dentry = filp->f_dentry;
1507         struct inode *inode = dentry->d_inode;
1508         int error;
1509
1510         if ((current->fsuid != inode->i_uid) && !capable(CAP_LEASE))
1511                 return -EACCES;
1512         if (!S_ISREG(inode->i_mode))
1513                 return -EINVAL;
1514         error = security_file_lock(filp, arg);
1515         if (error)
1516                 return error;
1517
1518         locks_init_lock(&fl);
1519         error = lease_init(filp, arg, &fl);
1520         if (error)
1521                 return error;
1522
1523         lock_kernel();
1524
1525         error = __setlease(filp, arg, &flp);
1526         if (error || arg == F_UNLCK)
1527                 goto out_unlock;
1528
1529         error = fasync_helper(fd, filp, 1, &flp->fl_fasync);
1530         if (error < 0) {
1531                 /* remove lease just inserted by __setlease */
1532                 flp->fl_type = F_UNLCK | F_INPROGRESS;
1533                 flp->fl_break_time = jiffies- 10;
1534                 time_out_leases(inode);
1535                 goto out_unlock;
1536         }
1537
1538         error = f_setown(filp, current->pid, 0);
1539 out_unlock:
1540         unlock_kernel();
1541         return error;
1542 }
1543
1544 /**
1545  * flock_lock_file_wait - Apply a FLOCK-style lock to a file
1546  * @filp: The file to apply the lock to
1547  * @fl: The lock to be applied
1548  *
1549  * Add a FLOCK style lock to a file.
1550  */
1551 int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
1552 {
1553         int error;
1554         might_sleep();
1555         for (;;) {
1556                 error = flock_lock_file(filp, fl);
1557                 if ((error != -EAGAIN) || !(fl->fl_flags & FL_SLEEP))
1558                         break;
1559                 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1560                 if (!error)
1561                         continue;
1562
1563                 locks_delete_block(fl);
1564                 break;
1565         }
1566         return error;
1567 }
1568
1569 EXPORT_SYMBOL(flock_lock_file_wait);
1570
1571 /**
1572  *      sys_flock: - flock() system call.
1573  *      @fd: the file descriptor to lock.
1574  *      @cmd: the type of lock to apply.
1575  *
1576  *      Apply a %FL_FLOCK style lock to an open file descriptor.
1577  *      The @cmd can be one of
1578  *
1579  *      %LOCK_SH -- a shared lock.
1580  *
1581  *      %LOCK_EX -- an exclusive lock.
1582  *
1583  *      %LOCK_UN -- remove an existing lock.
1584  *
1585  *      %LOCK_MAND -- a `mandatory' flock.  This exists to emulate Windows Share Modes.
1586  *
1587  *      %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1588  *      processes read and write access respectively.
1589  */
1590 asmlinkage long sys_flock(unsigned int fd, unsigned int cmd)
1591 {
1592         struct file *filp;
1593         struct file_lock *lock;
1594         int can_sleep, unlock;
1595         int error;
1596
1597         error = -EBADF;
1598         filp = fget(fd);
1599         if (!filp)
1600                 goto out;
1601
1602         can_sleep = !(cmd & LOCK_NB);
1603         cmd &= ~LOCK_NB;
1604         unlock = (cmd == LOCK_UN);
1605
1606         if (!unlock && !(cmd & LOCK_MAND) && !(filp->f_mode & 3))
1607                 goto out_putf;
1608
1609         error = flock_make_lock(filp, &lock, cmd);
1610         if (error)
1611                 goto out_putf;
1612         if (can_sleep)
1613                 lock->fl_flags |= FL_SLEEP;
1614
1615         error = security_file_lock(filp, cmd);
1616         if (error)
1617                 goto out_free;
1618
1619         if (filp->f_op && filp->f_op->flock)
1620                 error = filp->f_op->flock(filp,
1621                                           (can_sleep) ? F_SETLKW : F_SETLK,
1622                                           lock);
1623         else
1624                 error = flock_lock_file_wait(filp, lock);
1625
1626  out_free:
1627         locks_free_lock(lock);
1628
1629  out_putf:
1630         fput(filp);
1631  out:
1632         return error;
1633 }
1634
1635 /* Report the first existing lock that would conflict with l.
1636  * This implements the F_GETLK command of fcntl().
1637  */
1638 int fcntl_getlk(struct file *filp, struct flock __user *l)
1639 {
1640         struct file_lock *fl, cfl, file_lock;
1641         struct flock flock;
1642         int error;
1643
1644         error = -EFAULT;
1645         if (copy_from_user(&flock, l, sizeof(flock)))
1646                 goto out;
1647         error = -EINVAL;
1648         if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1649                 goto out;
1650
1651         error = flock_to_posix_lock(filp, &file_lock, &flock);
1652         if (error)
1653                 goto out;
1654
1655         if (filp->f_op && filp->f_op->lock) {
1656                 error = filp->f_op->lock(filp, F_GETLK, &file_lock);
1657                 if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
1658                         file_lock.fl_ops->fl_release_private(&file_lock);
1659                 if (error < 0)
1660                         goto out;
1661                 else
1662                   fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
1663         } else {
1664                 fl = (posix_test_lock(filp, &file_lock, &cfl) ? &cfl : NULL);
1665         }
1666  
1667         flock.l_type = F_UNLCK;
1668         if (fl != NULL) {
1669                 flock.l_pid = fl->fl_pid;
1670 #if BITS_PER_LONG == 32
1671                 /*
1672                  * Make sure we can represent the posix lock via
1673                  * legacy 32bit flock.
1674                  */
1675                 error = -EOVERFLOW;
1676                 if (fl->fl_start > OFFT_OFFSET_MAX)
1677                         goto out;
1678                 if ((fl->fl_end != OFFSET_MAX)
1679                     && (fl->fl_end > OFFT_OFFSET_MAX))
1680                         goto out;
1681 #endif
1682                 flock.l_start = fl->fl_start;
1683                 flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
1684                         fl->fl_end - fl->fl_start + 1;
1685                 flock.l_whence = 0;
1686                 flock.l_type = fl->fl_type;
1687         }
1688         error = -EFAULT;
1689         if (!copy_to_user(l, &flock, sizeof(flock)))
1690                 error = 0;
1691 out:
1692         return error;
1693 }
1694
1695 /* Apply the lock described by l to an open file descriptor.
1696  * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1697  */
1698 int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
1699                 struct flock __user *l)
1700 {
1701         struct file_lock *file_lock = locks_alloc_lock();
1702         struct flock flock;
1703         struct inode *inode;
1704         int error;
1705
1706         if (file_lock == NULL)
1707                 return -ENOLCK;
1708
1709         file_lock->fl_xid = filp->f_xid;
1710         vx_locks_inc(file_lock);
1711
1712         /*
1713          * This might block, so we do it before checking the inode.
1714          */
1715         error = -EFAULT;
1716         if (copy_from_user(&flock, l, sizeof(flock)))
1717                 goto out;
1718
1719         inode = filp->f_dentry->d_inode;
1720
1721         /* Don't allow mandatory locks on files that may be memory mapped
1722          * and shared.
1723          */
1724         if (IS_MANDLOCK(inode) &&
1725             (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID &&
1726             mapping_writably_mapped(filp->f_mapping)) {
1727                 error = -EAGAIN;
1728                 goto out;
1729         }
1730
1731 again:
1732         error = flock_to_posix_lock(filp, file_lock, &flock);
1733         if (error)
1734                 goto out;
1735         if (cmd == F_SETLKW) {
1736                 file_lock->fl_flags |= FL_SLEEP;
1737         }
1738         
1739         error = -EBADF;
1740         switch (flock.l_type) {
1741         case F_RDLCK:
1742                 if (!(filp->f_mode & FMODE_READ))
1743                         goto out;
1744                 break;
1745         case F_WRLCK:
1746                 if (!(filp->f_mode & FMODE_WRITE))
1747                         goto out;
1748                 break;
1749         case F_UNLCK:
1750                 break;
1751         default:
1752                 error = -EINVAL;
1753                 goto out;
1754         }
1755
1756         error = security_file_lock(filp, file_lock->fl_type);
1757         if (error)
1758                 goto out;
1759
1760         if (filp->f_op && filp->f_op->lock != NULL)
1761                 error = filp->f_op->lock(filp, cmd, file_lock);
1762         else {
1763                 for (;;) {
1764                         error = posix_lock_file(filp, file_lock);
1765                         if ((error != -EAGAIN) || (cmd == F_SETLK))
1766                                 break;
1767                         error = wait_event_interruptible(file_lock->fl_wait,
1768                                         !file_lock->fl_next);
1769                         if (!error)
1770                                 continue;
1771
1772                         locks_delete_block(file_lock);
1773                         break;
1774                 }
1775         }
1776
1777         /*
1778          * Attempt to detect a close/fcntl race and recover by
1779          * releasing the lock that was just acquired.
1780          */
1781         if (!error && fcheck(fd) != filp && flock.l_type != F_UNLCK) {
1782                 flock.l_type = F_UNLCK;
1783                 goto again;
1784         }
1785
1786 out:
1787         locks_free_lock(file_lock);
1788         return error;
1789 }
1790
1791 #if BITS_PER_LONG == 32
1792 /* Report the first existing lock that would conflict with l.
1793  * This implements the F_GETLK command of fcntl().
1794  */
1795 int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
1796 {
1797         struct file_lock *fl, cfl, file_lock;
1798         struct flock64 flock;
1799         int error;
1800
1801         error = -EFAULT;
1802         if (copy_from_user(&flock, l, sizeof(flock)))
1803                 goto out;
1804         error = -EINVAL;
1805         if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1806                 goto out;
1807
1808         error = flock64_to_posix_lock(filp, &file_lock, &flock);
1809         if (error)
1810                 goto out;
1811
1812         if (filp->f_op && filp->f_op->lock) {
1813                 error = filp->f_op->lock(filp, F_GETLK, &file_lock);
1814                 if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
1815                         file_lock.fl_ops->fl_release_private(&file_lock);
1816                 if (error < 0)
1817                         goto out;
1818                 else
1819                   fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
1820         } else {
1821                 fl = (posix_test_lock(filp, &file_lock, &cfl) ? &cfl : NULL);
1822         }
1823  
1824         flock.l_type = F_UNLCK;
1825         if (fl != NULL) {
1826                 flock.l_pid = fl->fl_pid;
1827                 flock.l_start = fl->fl_start;
1828                 flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
1829                         fl->fl_end - fl->fl_start + 1;
1830                 flock.l_whence = 0;
1831                 flock.l_type = fl->fl_type;
1832         }
1833         error = -EFAULT;
1834         if (!copy_to_user(l, &flock, sizeof(flock)))
1835                 error = 0;
1836   
1837 out:
1838         return error;
1839 }
1840
1841 /* Apply the lock described by l to an open file descriptor.
1842  * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1843  */
1844 int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
1845                 struct flock64 __user *l)
1846 {
1847         struct file_lock *file_lock = locks_alloc_lock();
1848         struct flock64 flock;
1849         struct inode *inode;
1850         int error;
1851
1852         if (file_lock == NULL)
1853                 return -ENOLCK;
1854
1855         file_lock->fl_xid = filp->f_xid;
1856         vx_locks_inc(file_lock);
1857
1858         /*
1859          * This might block, so we do it before checking the inode.
1860          */
1861         error = -EFAULT;
1862         if (copy_from_user(&flock, l, sizeof(flock)))
1863                 goto out;
1864
1865         inode = filp->f_dentry->d_inode;
1866
1867         /* Don't allow mandatory locks on files that may be memory mapped
1868          * and shared.
1869          */
1870         if (IS_MANDLOCK(inode) &&
1871             (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID &&
1872             mapping_writably_mapped(filp->f_mapping)) {
1873                 error = -EAGAIN;
1874                 goto out;
1875         }
1876
1877 again:
1878         error = flock64_to_posix_lock(filp, file_lock, &flock);
1879         if (error)
1880                 goto out;
1881         if (cmd == F_SETLKW64) {
1882                 file_lock->fl_flags |= FL_SLEEP;
1883         }
1884         
1885         error = -EBADF;
1886         switch (flock.l_type) {
1887         case F_RDLCK:
1888                 if (!(filp->f_mode & FMODE_READ))
1889                         goto out;
1890                 break;
1891         case F_WRLCK:
1892                 if (!(filp->f_mode & FMODE_WRITE))
1893                         goto out;
1894                 break;
1895         case F_UNLCK:
1896                 break;
1897         default:
1898                 error = -EINVAL;
1899                 goto out;
1900         }
1901
1902         error = security_file_lock(filp, file_lock->fl_type);
1903         if (error)
1904                 goto out;
1905
1906         if (filp->f_op && filp->f_op->lock != NULL)
1907                 error = filp->f_op->lock(filp, cmd, file_lock);
1908         else {
1909                 for (;;) {
1910                         error = posix_lock_file(filp, file_lock);
1911                         if ((error != -EAGAIN) || (cmd == F_SETLK64))
1912                                 break;
1913                         error = wait_event_interruptible(file_lock->fl_wait,
1914                                         !file_lock->fl_next);
1915                         if (!error)
1916                                 continue;
1917
1918                         locks_delete_block(file_lock);
1919                         break;
1920                 }
1921         }
1922
1923         /*
1924          * Attempt to detect a close/fcntl race and recover by
1925          * releasing the lock that was just acquired.
1926          */
1927         if (!error && fcheck(fd) != 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 #endif /* BITS_PER_LONG == 32 */
1937
1938 /*
1939  * This function is called when the file is being removed
1940  * from the task's fd array.  POSIX locks belonging to this task
1941  * are deleted at this time.
1942  */
1943 void locks_remove_posix(struct file *filp, fl_owner_t owner)
1944 {
1945         struct file_lock lock;
1946
1947         /*
1948          * If there are no locks held on this file, we don't need to call
1949          * posix_lock_file().  Another process could be setting a lock on this
1950          * file at the same time, but we wouldn't remove that lock anyway.
1951          */
1952         if (!filp->f_dentry->d_inode->i_flock)
1953                 return;
1954
1955         lock.fl_type = F_UNLCK;
1956         lock.fl_flags = FL_POSIX | FL_CLOSE;
1957         lock.fl_start = 0;
1958         lock.fl_end = OFFSET_MAX;
1959         lock.fl_owner = owner;
1960         lock.fl_pid = current->tgid;
1961         lock.fl_file = filp;
1962         lock.fl_ops = NULL;
1963         lock.fl_lmops = NULL;
1964
1965         if (filp->f_op && filp->f_op->lock != NULL)
1966                 filp->f_op->lock(filp, F_SETLK, &lock);
1967         else
1968                 posix_lock_file(filp, &lock);
1969
1970         if (lock.fl_ops && lock.fl_ops->fl_release_private)
1971                 lock.fl_ops->fl_release_private(&lock);
1972 }
1973
1974 EXPORT_SYMBOL(locks_remove_posix);
1975
1976 /*
1977  * This function is called on the last close of an open file.
1978  */
1979 void locks_remove_flock(struct file *filp)
1980 {
1981         struct inode * inode = filp->f_dentry->d_inode; 
1982         struct file_lock *fl;
1983         struct file_lock **before;
1984
1985         if (!inode->i_flock)
1986                 return;
1987
1988         if (filp->f_op && filp->f_op->flock) {
1989                 struct file_lock fl = {
1990                         .fl_pid = current->tgid,
1991                         .fl_file = filp,
1992                         .fl_flags = FL_FLOCK,
1993                         .fl_type = F_UNLCK,
1994                         .fl_end = OFFSET_MAX,
1995                 };
1996                 filp->f_op->flock(filp, F_SETLKW, &fl);
1997                 if (fl.fl_ops && fl.fl_ops->fl_release_private)
1998                         fl.fl_ops->fl_release_private(&fl);
1999         }
2000
2001         lock_kernel();
2002         before = &inode->i_flock;
2003
2004         while ((fl = *before) != NULL) {
2005                 if (fl->fl_file == filp) {
2006                         if (IS_FLOCK(fl)) {
2007                                 locks_delete_lock(before);
2008                                 continue;
2009                         }
2010                         if (IS_LEASE(fl)) {
2011                                 lease_modify(before, F_UNLCK);
2012                                 continue;
2013                         }
2014                         /* What? */
2015                         BUG();
2016                 }
2017                 before = &fl->fl_next;
2018         }
2019         unlock_kernel();
2020 }
2021
2022 /**
2023  *      posix_unblock_lock - stop waiting for a file lock
2024  *      @filp:   how the file was opened
2025  *      @waiter: the lock which was waiting
2026  *
2027  *      lockd needs to block waiting for locks.
2028  */
2029 int
2030 posix_unblock_lock(struct file *filp, struct file_lock *waiter)
2031 {
2032         int status = 0;
2033
2034         lock_kernel();
2035         if (waiter->fl_next)
2036                 __locks_delete_block(waiter);
2037         else
2038                 status = -ENOENT;
2039         unlock_kernel();
2040         return status;
2041 }
2042
2043 EXPORT_SYMBOL(posix_unblock_lock);
2044
2045 static void lock_get_status(char* out, struct file_lock *fl, int id, char *pfx)
2046 {
2047         struct inode *inode = NULL;
2048
2049         if (fl->fl_file != NULL)
2050                 inode = fl->fl_file->f_dentry->d_inode;
2051
2052         out += sprintf(out, "%d:%s ", id, pfx);
2053         if (IS_POSIX(fl)) {
2054                 out += sprintf(out, "%6s %s ",
2055                              (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
2056                              (inode == NULL) ? "*NOINODE*" :
2057                              (IS_MANDLOCK(inode) &&
2058                               (inode->i_mode & (S_IXGRP | S_ISGID)) == S_ISGID) ?
2059                              "MANDATORY" : "ADVISORY ");
2060         } else if (IS_FLOCK(fl)) {
2061                 if (fl->fl_type & LOCK_MAND) {
2062                         out += sprintf(out, "FLOCK  MSNFS     ");
2063                 } else {
2064                         out += sprintf(out, "FLOCK  ADVISORY  ");
2065                 }
2066         } else if (IS_LEASE(fl)) {
2067                 out += sprintf(out, "LEASE  ");
2068                 if (fl->fl_type & F_INPROGRESS)
2069                         out += sprintf(out, "BREAKING  ");
2070                 else if (fl->fl_file)
2071                         out += sprintf(out, "ACTIVE    ");
2072                 else
2073                         out += sprintf(out, "BREAKER   ");
2074         } else {
2075                 out += sprintf(out, "UNKNOWN UNKNOWN  ");
2076         }
2077         if (fl->fl_type & LOCK_MAND) {
2078                 out += sprintf(out, "%s ",
2079                                (fl->fl_type & LOCK_READ)
2080                                ? (fl->fl_type & LOCK_WRITE) ? "RW   " : "READ "
2081                                : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2082         } else {
2083                 out += sprintf(out, "%s ",
2084                                (fl->fl_type & F_INPROGRESS)
2085                                ? (fl->fl_type & F_UNLCK) ? "UNLCK" : "READ "
2086                                : (fl->fl_type & F_WRLCK) ? "WRITE" : "READ ");
2087         }
2088         if (inode) {
2089 #ifdef WE_CAN_BREAK_LSLK_NOW
2090                 out += sprintf(out, "%d %s:%ld ", fl->fl_pid,
2091                                 inode->i_sb->s_id, inode->i_ino);
2092 #else
2093                 /* userspace relies on this representation of dev_t ;-( */
2094                 out += sprintf(out, "%d %02x:%02x:%ld ", fl->fl_pid,
2095                                 MAJOR(inode->i_sb->s_dev),
2096                                 MINOR(inode->i_sb->s_dev), inode->i_ino);
2097 #endif
2098         } else {
2099                 out += sprintf(out, "%d <none>:0 ", fl->fl_pid);
2100         }
2101         if (IS_POSIX(fl)) {
2102                 if (fl->fl_end == OFFSET_MAX)
2103                         out += sprintf(out, "%Ld EOF\n", fl->fl_start);
2104                 else
2105                         out += sprintf(out, "%Ld %Ld\n", fl->fl_start,
2106                                         fl->fl_end);
2107         } else {
2108                 out += sprintf(out, "0 EOF\n");
2109         }
2110 }
2111
2112 static void move_lock_status(char **p, off_t* pos, off_t offset)
2113 {
2114         int len;
2115         len = strlen(*p);
2116         if(*pos >= offset) {
2117                 /* the complete line is valid */
2118                 *p += len;
2119                 *pos += len;
2120                 return;
2121         }
2122         if(*pos+len > offset) {
2123                 /* use the second part of the line */
2124                 int i = offset-*pos;
2125                 memmove(*p,*p+i,len-i);
2126                 *p += len-i;
2127                 *pos += len;
2128                 return;
2129         }
2130         /* discard the complete line */
2131         *pos += len;
2132 }
2133
2134 /**
2135  *      get_locks_status        -       reports lock usage in /proc/locks
2136  *      @buffer: address in userspace to write into
2137  *      @start: ?
2138  *      @offset: how far we are through the buffer
2139  *      @length: how much to read
2140  */
2141
2142 int get_locks_status(char *buffer, char **start, off_t offset, int length)
2143 {
2144         struct list_head *tmp;
2145         char *q = buffer;
2146         off_t pos = 0;
2147         int i = 0;
2148
2149         lock_kernel();
2150         list_for_each(tmp, &file_lock_list) {
2151                 struct list_head *btmp;
2152                 struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
2153
2154                 if (!vx_check(fl->fl_xid, VX_IDENT|VX_WATCH))
2155                         continue;
2156
2157                 lock_get_status(q, fl, ++i, "");
2158                 move_lock_status(&q, &pos, offset);
2159
2160                 if(pos >= offset+length)
2161                         goto done;
2162
2163                 list_for_each(btmp, &fl->fl_block) {
2164                         struct file_lock *bfl = list_entry(btmp,
2165                                         struct file_lock, fl_block);
2166                         lock_get_status(q, bfl, i, " ->");
2167                         move_lock_status(&q, &pos, offset);
2168
2169                         if(pos >= offset+length)
2170                                 goto done;
2171                 }
2172         }
2173 done:
2174         unlock_kernel();
2175         *start = buffer;
2176         if(q-buffer < length)
2177                 return (q-buffer);
2178         return length;
2179 }
2180
2181 /**
2182  *      lock_may_read - checks that the region is free of locks
2183  *      @inode: the inode that is being read
2184  *      @start: the first byte to read
2185  *      @len: the number of bytes to read
2186  *
2187  *      Emulates Windows locking requirements.  Whole-file
2188  *      mandatory locks (share modes) can prohibit a read and
2189  *      byte-range POSIX locks can prohibit a read if they overlap.
2190  *
2191  *      N.B. this function is only ever called
2192  *      from knfsd and ownership of locks is never checked.
2193  */
2194 int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
2195 {
2196         struct file_lock *fl;
2197         int result = 1;
2198         lock_kernel();
2199         for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2200                 if (IS_POSIX(fl)) {
2201                         if (fl->fl_type == F_RDLCK)
2202                                 continue;
2203                         if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2204                                 continue;
2205                 } else if (IS_FLOCK(fl)) {
2206                         if (!(fl->fl_type & LOCK_MAND))
2207                                 continue;
2208                         if (fl->fl_type & LOCK_READ)
2209                                 continue;
2210                 } else
2211                         continue;
2212                 result = 0;
2213                 break;
2214         }
2215         unlock_kernel();
2216         return result;
2217 }
2218
2219 EXPORT_SYMBOL(lock_may_read);
2220
2221 /**
2222  *      lock_may_write - checks that the region is free of locks
2223  *      @inode: the inode that is being written
2224  *      @start: the first byte to write
2225  *      @len: the number of bytes to write
2226  *
2227  *      Emulates Windows locking requirements.  Whole-file
2228  *      mandatory locks (share modes) can prohibit a write and
2229  *      byte-range POSIX locks can prohibit a write if they overlap.
2230  *
2231  *      N.B. this function is only ever called
2232  *      from knfsd and ownership of locks is never checked.
2233  */
2234 int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
2235 {
2236         struct file_lock *fl;
2237         int result = 1;
2238         lock_kernel();
2239         for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2240                 if (IS_POSIX(fl)) {
2241                         if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2242                                 continue;
2243                 } else if (IS_FLOCK(fl)) {
2244                         if (!(fl->fl_type & LOCK_MAND))
2245                                 continue;
2246                         if (fl->fl_type & LOCK_WRITE)
2247                                 continue;
2248                 } else
2249                         continue;
2250                 result = 0;
2251                 break;
2252         }
2253         unlock_kernel();
2254         return result;
2255 }
2256
2257 EXPORT_SYMBOL(lock_may_write);
2258
2259 static int __init filelock_init(void)
2260 {
2261         filelock_cache = kmem_cache_create("file_lock_cache",
2262                         sizeof(struct file_lock), 0, SLAB_PANIC,
2263                         init_once, NULL);
2264         return 0;
2265 }
2266
2267 core_initcall(filelock_init);