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