[PATCH] s390 (4/7): ctc driver.
[linux-2.6/history.git] / fs / locks.c
blob9fc4b5cd5c647764dcbb1f7fe6440c95450833f1
1 /*
2 * linux/fs/locks.c
4 * Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls.
5 * Doug Evans (dje@spiff.uucp), August 07, 1992
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.
12 * Miscellaneous edits, and a total rewrite of posix_lock_file() code.
13 * Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994
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
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
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
31 * Implemented two lock personalities - FL_FLOCK and FL_POSIX.
33 * FL_POSIX locks are created with calls to fcntl() and lockf() through the
34 * fcntl() system call. They have the semantics described above.
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.
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).
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
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.
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.
61 * Initial implementation of mandatory locks. SunOS turned out to be
62 * a rotten model, so I implemented the "obvious" semantics.
63 * See 'linux/Documentation/mandatory.txt' for details.
64 * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996.
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.
72 * Tidied up block list handling. Added '/proc/locks' interface.
73 * Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996.
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.
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.
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.
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.
94 * Made the block list a circular list to minimise searching in the list.
95 * Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996.
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.
101 * Some adaptations for NFS support.
102 * Olaf Kirch (okir@monad.swb.de), Dec 1996,
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.
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.
112 * Leases and LOCK_MAND
113 * Matthew Wilcox <willy@debian.org>, June, 2000.
114 * Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000.
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/time.h>
127 #include <asm/semaphore.h>
128 #include <asm/uaccess.h>
130 #define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
131 #define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
132 #define IS_LEASE(fl) (fl->fl_flags & FL_LEASE)
134 int leases_enable = 1;
135 int lease_break_time = 45;
137 #define for_each_lock(inode, lockp) \
138 for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
140 LIST_HEAD(file_lock_list);
141 static LIST_HEAD(blocked_list);
143 static kmem_cache_t *filelock_cache;
145 /* Allocate an empty lock structure. */
146 static struct file_lock *locks_alloc_lock(void)
148 return kmem_cache_alloc(filelock_cache, SLAB_KERNEL);
151 /* Free a lock which is not in use. */
152 static inline void locks_free_lock(struct file_lock *fl)
154 if (fl == NULL) {
155 BUG();
156 return;
158 if (waitqueue_active(&fl->fl_wait))
159 panic("Attempting to free lock with active wait queue");
161 if (!list_empty(&fl->fl_block))
162 panic("Attempting to free lock with active block list");
164 if (!list_empty(&fl->fl_link))
165 panic("Attempting to free lock on active lock list");
167 kmem_cache_free(filelock_cache, fl);
170 void locks_init_lock(struct file_lock *fl)
172 INIT_LIST_HEAD(&fl->fl_link);
173 INIT_LIST_HEAD(&fl->fl_block);
174 init_waitqueue_head(&fl->fl_wait);
175 fl->fl_next = NULL;
176 fl->fl_fasync = NULL;
177 fl->fl_owner = 0;
178 fl->fl_pid = 0;
179 fl->fl_file = NULL;
180 fl->fl_flags = 0;
181 fl->fl_type = 0;
182 fl->fl_start = fl->fl_end = 0;
183 fl->fl_notify = NULL;
184 fl->fl_insert = NULL;
185 fl->fl_remove = NULL;
189 * Initialises the fields of the file lock which are invariant for
190 * free file_locks.
192 static void init_once(void *foo, kmem_cache_t *cache, unsigned long flags)
194 struct file_lock *lock = (struct file_lock *) foo;
196 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) !=
197 SLAB_CTOR_CONSTRUCTOR)
198 return;
200 locks_init_lock(lock);
204 * Initialize a new lock from an existing file_lock structure.
206 void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
208 new->fl_owner = fl->fl_owner;
209 new->fl_pid = fl->fl_pid;
210 new->fl_file = fl->fl_file;
211 new->fl_flags = fl->fl_flags;
212 new->fl_type = fl->fl_type;
213 new->fl_start = fl->fl_start;
214 new->fl_end = fl->fl_end;
215 new->fl_notify = fl->fl_notify;
216 new->fl_insert = fl->fl_insert;
217 new->fl_remove = fl->fl_remove;
218 new->fl_u = fl->fl_u;
221 static inline int flock_translate_cmd(int cmd) {
222 if (cmd & LOCK_MAND)
223 return cmd & (LOCK_MAND | LOCK_RW);
224 switch (cmd) {
225 case LOCK_SH:
226 return F_RDLCK;
227 case LOCK_EX:
228 return F_WRLCK;
229 case LOCK_UN:
230 return F_UNLCK;
232 return -EINVAL;
235 /* Fill in a file_lock structure with an appropriate FLOCK lock. */
236 static int flock_make_lock(struct file *filp, struct file_lock **lock,
237 unsigned int cmd)
239 struct file_lock *fl;
240 int type = flock_translate_cmd(cmd);
241 if (type < 0)
242 return type;
244 fl = locks_alloc_lock();
245 if (fl == NULL)
246 return -ENOMEM;
248 fl->fl_file = filp;
249 fl->fl_pid = current->tgid;
250 fl->fl_flags = FL_FLOCK;
251 fl->fl_type = type;
252 fl->fl_end = OFFSET_MAX;
254 *lock = fl;
255 return 0;
258 static int assign_type(struct file_lock *fl, int type)
260 switch (type) {
261 case F_RDLCK:
262 case F_WRLCK:
263 case F_UNLCK:
264 fl->fl_type = type;
265 break;
266 default:
267 return -EINVAL;
269 return 0;
272 /* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
273 * style lock.
275 static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
276 struct flock *l)
278 off_t start, end;
280 switch (l->l_whence) {
281 case 0: /*SEEK_SET*/
282 start = 0;
283 break;
284 case 1: /*SEEK_CUR*/
285 start = filp->f_pos;
286 break;
287 case 2: /*SEEK_END*/
288 start = i_size_read(filp->f_dentry->d_inode);
289 break;
290 default:
291 return -EINVAL;
294 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
295 POSIX-2001 defines it. */
296 start += l->l_start;
297 end = start + l->l_len - 1;
298 if (l->l_len < 0) {
299 end = start - 1;
300 start += l->l_len;
303 if (start < 0)
304 return -EINVAL;
305 if (l->l_len > 0 && end < 0)
306 return -EOVERFLOW;
308 fl->fl_start = start; /* we record the absolute position */
309 fl->fl_end = end;
310 if (l->l_len == 0)
311 fl->fl_end = OFFSET_MAX;
313 fl->fl_owner = current->files;
314 fl->fl_pid = current->tgid;
315 fl->fl_file = filp;
316 fl->fl_flags = FL_POSIX;
317 fl->fl_notify = NULL;
318 fl->fl_insert = NULL;
319 fl->fl_remove = NULL;
321 return assign_type(fl, l->l_type);
324 #if BITS_PER_LONG == 32
325 static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
326 struct flock64 *l)
328 loff_t start;
330 switch (l->l_whence) {
331 case 0: /*SEEK_SET*/
332 start = 0;
333 break;
334 case 1: /*SEEK_CUR*/
335 start = filp->f_pos;
336 break;
337 case 2: /*SEEK_END*/
338 start = i_size_read(filp->f_dentry->d_inode);
339 break;
340 default:
341 return -EINVAL;
344 if (((start += l->l_start) < 0) || (l->l_len < 0))
345 return -EINVAL;
346 fl->fl_end = start + l->l_len - 1;
347 if (l->l_len > 0 && fl->fl_end < 0)
348 return -EOVERFLOW;
349 fl->fl_start = start; /* we record the absolute position */
350 if (l->l_len == 0)
351 fl->fl_end = OFFSET_MAX;
353 fl->fl_owner = current->files;
354 fl->fl_pid = current->tgid;
355 fl->fl_file = filp;
356 fl->fl_flags = FL_POSIX;
357 fl->fl_notify = NULL;
358 fl->fl_insert = NULL;
359 fl->fl_remove = NULL;
361 switch (l->l_type) {
362 case F_RDLCK:
363 case F_WRLCK:
364 case F_UNLCK:
365 fl->fl_type = l->l_type;
366 break;
367 default:
368 return -EINVAL;
371 return (0);
373 #endif
375 /* Allocate a file_lock initialised to this type of lease */
376 static int lease_alloc(struct file *filp, int type, struct file_lock **flp)
378 struct file_lock *fl = locks_alloc_lock();
379 if (fl == NULL)
380 return -ENOMEM;
382 fl->fl_owner = current->files;
383 fl->fl_pid = current->tgid;
385 fl->fl_file = filp;
386 fl->fl_flags = FL_LEASE;
387 if (assign_type(fl, type) != 0) {
388 locks_free_lock(fl);
389 return -EINVAL;
391 fl->fl_start = 0;
392 fl->fl_end = OFFSET_MAX;
393 fl->fl_notify = NULL;
394 fl->fl_insert = NULL;
395 fl->fl_remove = NULL;
397 *flp = fl;
398 return 0;
401 /* Check if two locks overlap each other.
403 static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
405 return ((fl1->fl_end >= fl2->fl_start) &&
406 (fl2->fl_end >= fl1->fl_start));
410 * Check whether two locks have the same owner. The apparently superfluous
411 * check for fl_pid enables us to distinguish between locks set by lockd.
413 static inline int
414 posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
416 return (fl1->fl_owner == fl2->fl_owner) &&
417 (fl1->fl_pid == fl2->fl_pid);
420 /* Remove waiter from blocker's block list.
421 * When blocker ends up pointing to itself then the list is empty.
423 static inline void __locks_delete_block(struct file_lock *waiter)
425 list_del_init(&waiter->fl_block);
426 list_del_init(&waiter->fl_link);
427 waiter->fl_next = NULL;
432 static void locks_delete_block(struct file_lock *waiter)
434 lock_kernel();
435 __locks_delete_block(waiter);
436 unlock_kernel();
439 /* Insert waiter into blocker's block list.
440 * We use a circular list so that processes can be easily woken up in
441 * the order they blocked. The documentation doesn't require this but
442 * it seems like the reasonable thing to do.
444 static void locks_insert_block(struct file_lock *blocker,
445 struct file_lock *waiter)
447 if (!list_empty(&waiter->fl_block)) {
448 printk(KERN_ERR "locks_insert_block: removing duplicated lock "
449 "(pid=%d %Ld-%Ld type=%d)\n", waiter->fl_pid,
450 waiter->fl_start, waiter->fl_end, waiter->fl_type);
451 __locks_delete_block(waiter);
453 list_add_tail(&waiter->fl_block, &blocker->fl_block);
454 waiter->fl_next = blocker;
455 list_add(&waiter->fl_link, &blocked_list);
458 /* Wake up processes blocked waiting for blocker.
459 * If told to wait then schedule the processes until the block list
460 * is empty, otherwise empty the block list ourselves.
462 static void locks_wake_up_blocks(struct file_lock *blocker)
464 while (!list_empty(&blocker->fl_block)) {
465 struct file_lock *waiter = list_entry(blocker->fl_block.next,
466 struct file_lock, fl_block);
467 __locks_delete_block(waiter);
468 if (waiter->fl_notify)
469 waiter->fl_notify(waiter);
470 else
471 wake_up(&waiter->fl_wait);
475 /* Insert file lock fl into an inode's lock list at the position indicated
476 * by pos. At the same time add the lock to the global file lock list.
478 static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
480 list_add(&fl->fl_link, &file_lock_list);
482 /* insert into file's list */
483 fl->fl_next = *pos;
484 *pos = fl;
486 if (fl->fl_insert)
487 fl->fl_insert(fl);
491 * Delete a lock and then free it.
492 * Wake up processes that are blocked waiting for this lock,
493 * notify the FS that the lock has been cleared and
494 * finally free the lock.
496 static void locks_delete_lock(struct file_lock **thisfl_p)
498 struct file_lock *fl = *thisfl_p;
500 *thisfl_p = fl->fl_next;
501 fl->fl_next = NULL;
502 list_del_init(&fl->fl_link);
504 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
505 if (fl->fl_fasync != NULL) {
506 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
507 fl->fl_fasync = NULL;
510 if (fl->fl_remove)
511 fl->fl_remove(fl);
513 locks_wake_up_blocks(fl);
514 locks_free_lock(fl);
517 /* Determine if lock sys_fl blocks lock caller_fl. Common functionality
518 * checks for shared/exclusive status of overlapping locks.
520 static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
522 if (sys_fl->fl_type == F_WRLCK)
523 return 1;
524 if (caller_fl->fl_type == F_WRLCK)
525 return 1;
526 return 0;
529 /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
530 * checking before calling the locks_conflict().
532 static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
534 /* POSIX locks owned by the same process do not conflict with
535 * each other.
537 if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
538 return (0);
540 /* Check whether they overlap */
541 if (!locks_overlap(caller_fl, sys_fl))
542 return 0;
544 return (locks_conflict(caller_fl, sys_fl));
547 /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
548 * checking before calling the locks_conflict().
550 static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
552 /* FLOCK locks referring to the same filp do not conflict with
553 * each other.
555 if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
556 return (0);
557 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
558 return 0;
560 return (locks_conflict(caller_fl, sys_fl));
563 static int interruptible_sleep_on_locked(wait_queue_head_t *fl_wait, int timeout)
565 int result = 0;
566 DECLARE_WAITQUEUE(wait, current);
568 __set_current_state(TASK_INTERRUPTIBLE);
569 add_wait_queue(fl_wait, &wait);
570 if (timeout == 0)
571 schedule();
572 else
573 result = schedule_timeout(timeout);
574 if (signal_pending(current))
575 result = -ERESTARTSYS;
576 remove_wait_queue(fl_wait, &wait);
577 __set_current_state(TASK_RUNNING);
578 return result;
581 static int locks_block_on_timeout(struct file_lock *blocker, struct file_lock *waiter, int time)
583 int result;
584 locks_insert_block(blocker, waiter);
585 result = interruptible_sleep_on_locked(&waiter->fl_wait, time);
586 __locks_delete_block(waiter);
587 return result;
590 struct file_lock *
591 posix_test_lock(struct file *filp, struct file_lock *fl)
593 struct file_lock *cfl;
595 lock_kernel();
596 for (cfl = filp->f_dentry->d_inode->i_flock; cfl; cfl = cfl->fl_next) {
597 if (!IS_POSIX(cfl))
598 continue;
599 if (posix_locks_conflict(cfl, fl))
600 break;
602 unlock_kernel();
604 return (cfl);
607 /* This function tests for deadlock condition before putting a process to
608 * sleep. The detection scheme is no longer recursive. Recursive was neat,
609 * but dangerous - we risked stack corruption if the lock data was bad, or
610 * if the recursion was too deep for any other reason.
612 * We rely on the fact that a task can only be on one lock's wait queue
613 * at a time. When we find blocked_task on a wait queue we can re-search
614 * with blocked_task equal to that queue's owner, until either blocked_task
615 * isn't found, or blocked_task is found on a queue owned by my_task.
617 * Note: the above assumption may not be true when handling lock requests
618 * from a broken NFS client. But broken NFS clients have a lot more to
619 * worry about than proper deadlock detection anyway... --okir
621 int posix_locks_deadlock(struct file_lock *caller_fl,
622 struct file_lock *block_fl)
624 struct list_head *tmp;
625 fl_owner_t caller_owner, blocked_owner;
626 unsigned int caller_pid, blocked_pid;
628 caller_owner = caller_fl->fl_owner;
629 caller_pid = caller_fl->fl_pid;
630 blocked_owner = block_fl->fl_owner;
631 blocked_pid = block_fl->fl_pid;
633 next_task:
634 if (caller_owner == blocked_owner && caller_pid == blocked_pid)
635 return 1;
636 list_for_each(tmp, &blocked_list) {
637 struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
638 if ((fl->fl_owner == blocked_owner)
639 && (fl->fl_pid == blocked_pid)) {
640 fl = fl->fl_next;
641 blocked_owner = fl->fl_owner;
642 blocked_pid = fl->fl_pid;
643 goto next_task;
646 return 0;
649 /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
650 * at the head of the list, but that's secret knowledge known only to
651 * flock_lock_file and posix_lock_file.
653 static int flock_lock_file(struct file *filp, struct file_lock *new_fl)
655 struct file_lock **before;
656 struct inode * inode = filp->f_dentry->d_inode;
657 int error = 0;
658 int found = 0;
660 lock_kernel();
661 for_each_lock(inode, before) {
662 struct file_lock *fl = *before;
663 if (IS_POSIX(fl))
664 break;
665 if (IS_LEASE(fl))
666 continue;
667 if (filp != fl->fl_file)
668 continue;
669 if (new_fl->fl_type == fl->fl_type)
670 goto out;
671 found = 1;
672 locks_delete_lock(before);
673 break;
675 unlock_kernel();
677 if (new_fl->fl_type == F_UNLCK)
678 return 0;
681 * If a higher-priority process was blocked on the old file lock,
682 * give it the opportunity to lock the file.
684 if (found)
685 cond_resched();
687 lock_kernel();
688 for_each_lock(inode, before) {
689 struct file_lock *fl = *before;
690 if (IS_POSIX(fl))
691 break;
692 if (IS_LEASE(fl))
693 continue;
694 if (!flock_locks_conflict(new_fl, fl))
695 continue;
696 error = -EAGAIN;
697 if (new_fl->fl_flags & FL_SLEEP) {
698 locks_insert_block(fl, new_fl);
700 goto out;
702 locks_insert_lock(&inode->i_flock, new_fl);
703 error = 0;
705 out:
706 unlock_kernel();
707 return error;
710 static int __posix_lock_file(struct inode *inode, struct file_lock *request)
712 struct file_lock *fl;
713 struct file_lock *new_fl, *new_fl2;
714 struct file_lock *left = NULL;
715 struct file_lock *right = NULL;
716 struct file_lock **before;
717 int error, added = 0;
720 * We may need two file_lock structures for this operation,
721 * so we get them in advance to avoid races.
723 new_fl = locks_alloc_lock();
724 new_fl2 = locks_alloc_lock();
726 lock_kernel();
727 if (request->fl_type != F_UNLCK) {
728 for_each_lock(inode, before) {
729 struct file_lock *fl = *before;
730 if (!IS_POSIX(fl))
731 continue;
732 if (!posix_locks_conflict(request, fl))
733 continue;
734 error = -EAGAIN;
735 if (!(request->fl_flags & FL_SLEEP))
736 goto out;
737 error = -EDEADLK;
738 if (posix_locks_deadlock(request, fl))
739 goto out;
740 error = -EAGAIN;
741 locks_insert_block(fl, request);
742 goto out;
746 /* If we're just looking for a conflict, we're done. */
747 error = 0;
748 if (request->fl_flags & FL_ACCESS)
749 goto out;
751 error = -ENOLCK; /* "no luck" */
752 if (!(new_fl && new_fl2))
753 goto out;
756 * We've allocated the new locks in advance, so there are no
757 * errors possible (and no blocking operations) from here on.
759 * Find the first old lock with the same owner as the new lock.
762 before = &inode->i_flock;
764 /* First skip locks owned by other processes. */
765 while ((fl = *before) && (!IS_POSIX(fl) ||
766 !posix_same_owner(request, fl))) {
767 before = &fl->fl_next;
770 /* Process locks with this owner. */
771 while ((fl = *before) && posix_same_owner(request, fl)) {
772 /* Detect adjacent or overlapping regions (if same lock type)
774 if (request->fl_type == fl->fl_type) {
775 if (fl->fl_end < request->fl_start - 1)
776 goto next_lock;
777 /* If the next lock in the list has entirely bigger
778 * addresses than the new one, insert the lock here.
780 if (fl->fl_start > request->fl_end + 1)
781 break;
783 /* If we come here, the new and old lock are of the
784 * same type and adjacent or overlapping. Make one
785 * lock yielding from the lower start address of both
786 * locks to the higher end address.
788 if (fl->fl_start > request->fl_start)
789 fl->fl_start = request->fl_start;
790 else
791 request->fl_start = fl->fl_start;
792 if (fl->fl_end < request->fl_end)
793 fl->fl_end = request->fl_end;
794 else
795 request->fl_end = fl->fl_end;
796 if (added) {
797 locks_delete_lock(before);
798 continue;
800 request = fl;
801 added = 1;
803 else {
804 /* Processing for different lock types is a bit
805 * more complex.
807 if (fl->fl_end < request->fl_start)
808 goto next_lock;
809 if (fl->fl_start > request->fl_end)
810 break;
811 if (request->fl_type == F_UNLCK)
812 added = 1;
813 if (fl->fl_start < request->fl_start)
814 left = fl;
815 /* If the next lock in the list has a higher end
816 * address than the new one, insert the new one here.
818 if (fl->fl_end > request->fl_end) {
819 right = fl;
820 break;
822 if (fl->fl_start >= request->fl_start) {
823 /* The new lock completely replaces an old
824 * one (This may happen several times).
826 if (added) {
827 locks_delete_lock(before);
828 continue;
830 /* Replace the old lock with the new one.
831 * Wake up anybody waiting for the old one,
832 * as the change in lock type might satisfy
833 * their needs.
835 locks_wake_up_blocks(fl);
836 fl->fl_start = request->fl_start;
837 fl->fl_end = request->fl_end;
838 fl->fl_type = request->fl_type;
839 fl->fl_u = request->fl_u;
840 request = fl;
841 added = 1;
844 /* Go on to next lock.
846 next_lock:
847 before = &fl->fl_next;
850 error = 0;
851 if (!added) {
852 if (request->fl_type == F_UNLCK)
853 goto out;
854 locks_copy_lock(new_fl, request);
855 locks_insert_lock(before, new_fl);
856 new_fl = NULL;
858 if (right) {
859 if (left == right) {
860 /* The new lock breaks the old one in two pieces,
861 * so we have to use the second new lock.
863 left = new_fl2;
864 new_fl2 = NULL;
865 locks_copy_lock(left, right);
866 locks_insert_lock(before, left);
868 right->fl_start = request->fl_end + 1;
869 locks_wake_up_blocks(right);
871 if (left) {
872 left->fl_end = request->fl_start - 1;
873 locks_wake_up_blocks(left);
875 out:
876 unlock_kernel();
878 * Free any unused locks.
880 if (new_fl)
881 locks_free_lock(new_fl);
882 if (new_fl2)
883 locks_free_lock(new_fl2);
884 return error;
888 * posix_lock_file - Apply a POSIX-style lock to a file
889 * @filp: The file to apply the lock to
890 * @fl: The lock to be applied
892 * Add a POSIX style lock to a file.
893 * We merge adjacent & overlapping locks whenever possible.
894 * POSIX locks are sorted by owner task, then by starting address
896 int posix_lock_file(struct file *filp, struct file_lock *fl)
898 return __posix_lock_file(filp->f_dentry->d_inode, fl);
902 * locks_mandatory_locked - Check for an active lock
903 * @inode: the file to check
905 * Searches the inode's list of locks to find any POSIX locks which conflict.
906 * This function is called from locks_verify_locked() only.
908 int locks_mandatory_locked(struct inode *inode)
910 fl_owner_t owner = current->files;
911 struct file_lock *fl;
914 * Search the lock list for this inode for any POSIX locks.
916 lock_kernel();
917 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
918 if (!IS_POSIX(fl))
919 continue;
920 if (fl->fl_owner != owner)
921 break;
923 unlock_kernel();
924 return fl ? -EAGAIN : 0;
928 * locks_mandatory_area - Check for a conflicting lock
929 * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
930 * for shared
931 * @inode: the file to check
932 * @filp: how the file was opened (if it was)
933 * @offset: start of area to check
934 * @count: length of area to check
936 * Searches the inode's list of locks to find any POSIX locks which conflict.
937 * This function is called from locks_verify_area() and
938 * locks_verify_truncate().
940 int locks_mandatory_area(int read_write, struct inode *inode,
941 struct file *filp, loff_t offset,
942 size_t count)
944 struct file_lock fl;
945 int error;
947 locks_init_lock(&fl);
948 fl.fl_owner = current->files;
949 fl.fl_pid = current->tgid;
950 fl.fl_file = filp;
951 fl.fl_flags = FL_POSIX | FL_ACCESS;
952 if (filp && !(filp->f_flags & O_NONBLOCK))
953 fl.fl_flags |= FL_SLEEP;
954 fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
955 fl.fl_start = offset;
956 fl.fl_end = offset + count - 1;
958 for (;;) {
959 error = __posix_lock_file(inode, &fl);
960 if (error != -EAGAIN)
961 break;
962 if (!(fl.fl_flags & FL_SLEEP))
963 break;
964 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
965 if (!error) {
967 * If we've been sleeping someone might have
968 * changed the permissions behind our back.
970 if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
971 continue;
974 locks_delete_block(&fl);
975 break;
978 return error;
981 /* We already had a lease on this file; just change its type */
982 static int lease_modify(struct file_lock **before, int arg)
984 struct file_lock *fl = *before;
985 int error = assign_type(fl, arg);
987 if (error)
988 return error;
989 locks_wake_up_blocks(fl);
990 if (arg == F_UNLCK) {
991 struct file *filp = fl->fl_file;
993 f_delown(filp);
994 filp->f_owner.signum = 0;
995 locks_delete_lock(before);
997 return 0;
1000 static void time_out_leases(struct inode *inode)
1002 struct file_lock **before;
1003 struct file_lock *fl;
1005 before = &inode->i_flock;
1006 while ((fl = *before) && IS_LEASE(fl) && (fl->fl_type & F_INPROGRESS)) {
1007 if ((fl->fl_break_time == 0)
1008 || time_before(jiffies, fl->fl_break_time)) {
1009 before = &fl->fl_next;
1010 continue;
1012 printk(KERN_INFO "lease broken - owner pid = %d\n", fl->fl_pid);
1013 lease_modify(before, fl->fl_type & ~F_INPROGRESS);
1014 if (fl == *before) /* lease_modify may have freed fl */
1015 before = &fl->fl_next;
1020 * __break_lease - revoke all outstanding leases on file
1021 * @inode: the inode of the file to return
1022 * @mode: the open mode (read or write)
1024 * break_lease (inlined for speed) has checked there already
1025 * is a lease on this file. Leases are broken on a call to open()
1026 * or truncate(). This function can sleep unless you
1027 * specified %O_NONBLOCK to your open().
1029 int __break_lease(struct inode *inode, unsigned int mode)
1031 int error = 0, future;
1032 struct file_lock *new_fl, *flock;
1033 struct file_lock *fl;
1034 int alloc_err;
1035 unsigned long break_time;
1036 int i_have_this_lease = 0;
1038 alloc_err = lease_alloc(NULL, mode & FMODE_WRITE ? F_WRLCK : F_RDLCK,
1039 &new_fl);
1041 lock_kernel();
1043 time_out_leases(inode);
1045 flock = inode->i_flock;
1046 if ((flock == NULL) || !IS_LEASE(flock))
1047 goto out;
1049 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
1050 if (fl->fl_owner == current->files)
1051 i_have_this_lease = 1;
1053 if (mode & FMODE_WRITE) {
1054 /* If we want write access, we have to revoke any lease. */
1055 future = F_UNLCK | F_INPROGRESS;
1056 } else if (flock->fl_type & F_INPROGRESS) {
1057 /* If the lease is already being broken, we just leave it */
1058 future = flock->fl_type;
1059 } else if (flock->fl_type & F_WRLCK) {
1060 /* Downgrade the exclusive lease to a read-only lease. */
1061 future = F_RDLCK | F_INPROGRESS;
1062 } else {
1063 /* the existing lease was read-only, so we can read too. */
1064 goto out;
1067 if (alloc_err && !i_have_this_lease && ((mode & O_NONBLOCK) == 0)) {
1068 error = alloc_err;
1069 goto out;
1072 break_time = 0;
1073 if (lease_break_time > 0) {
1074 break_time = jiffies + lease_break_time * HZ;
1075 if (break_time == 0)
1076 break_time++; /* so that 0 means no break time */
1079 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1080 if (fl->fl_type != future) {
1081 fl->fl_type = future;
1082 fl->fl_break_time = break_time;
1083 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
1087 if (i_have_this_lease || (mode & O_NONBLOCK)) {
1088 error = -EWOULDBLOCK;
1089 goto out;
1092 restart:
1093 break_time = flock->fl_break_time;
1094 if (break_time != 0) {
1095 break_time -= jiffies;
1096 if (break_time == 0)
1097 break_time++;
1099 error = locks_block_on_timeout(flock, new_fl, break_time);
1100 if (error >= 0) {
1101 if (error == 0)
1102 time_out_leases(inode);
1103 /* Wait for the next lease that has not been broken yet */
1104 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1105 flock = flock->fl_next) {
1106 if (flock->fl_type & F_INPROGRESS)
1107 goto restart;
1109 error = 0;
1112 out:
1113 unlock_kernel();
1114 if (!alloc_err)
1115 locks_free_lock(new_fl);
1116 return error;
1120 * lease_get_mtime
1121 * @inode: the inode
1122 * @time: pointer to a timespec which will contain the last modified time
1124 * This is to force NFS clients to flush their caches for files with
1125 * exclusive leases. The justification is that if someone has an
1126 * exclusive lease, then they could be modifiying it.
1128 void lease_get_mtime(struct inode *inode, struct timespec *time)
1130 struct file_lock *flock = inode->i_flock;
1131 if (flock && IS_LEASE(flock) && (flock->fl_type & F_WRLCK))
1132 *time = CURRENT_TIME;
1133 else
1134 *time = inode->i_mtime;
1138 * fcntl_getlease - Enquire what lease is currently active
1139 * @filp: the file
1141 * The value returned by this function will be one of
1142 * (if no lease break is pending):
1144 * %F_RDLCK to indicate a shared lease is held.
1146 * %F_WRLCK to indicate an exclusive lease is held.
1148 * %F_UNLCK to indicate no lease is held.
1150 * (if a lease break is pending):
1152 * %F_RDLCK to indicate an exclusive lease needs to be
1153 * changed to a shared lease (or removed).
1155 * %F_UNLCK to indicate the lease needs to be removed.
1157 * XXX: sfr & willy disagree over whether F_INPROGRESS
1158 * should be returned to userspace.
1160 int fcntl_getlease(struct file *filp)
1162 struct file_lock *fl;
1163 int type = F_UNLCK;
1165 lock_kernel();
1166 time_out_leases(filp->f_dentry->d_inode);
1167 for (fl = filp->f_dentry->d_inode->i_flock; fl && IS_LEASE(fl);
1168 fl = fl->fl_next) {
1169 if (fl->fl_file == filp) {
1170 type = fl->fl_type & ~F_INPROGRESS;
1171 break;
1174 unlock_kernel();
1175 return type;
1179 * fcntl_setlease - sets a lease on an open file
1180 * @fd: open file descriptor
1181 * @filp: file pointer
1182 * @arg: type of lease to obtain
1184 * Call this fcntl to establish a lease on the file.
1185 * Note that you also need to call %F_SETSIG to
1186 * receive a signal when the lease is broken.
1188 int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1190 struct file_lock *fl, **before, **my_before = NULL;
1191 struct dentry *dentry;
1192 struct inode *inode;
1193 int error, rdlease_count = 0, wrlease_count = 0;
1195 dentry = filp->f_dentry;
1196 inode = dentry->d_inode;
1198 if ((current->fsuid != inode->i_uid) && !capable(CAP_LEASE))
1199 return -EACCES;
1200 if (!S_ISREG(inode->i_mode))
1201 return -EINVAL;
1202 error = security_file_lock(filp, arg);
1203 if (error)
1204 return error;
1206 lock_kernel();
1208 time_out_leases(inode);
1211 * FIXME: What about F_RDLCK and files open for writing?
1213 error = -EAGAIN;
1214 if ((arg == F_WRLCK)
1215 && ((atomic_read(&dentry->d_count) > 1)
1216 || (atomic_read(&inode->i_count) > 1)))
1217 goto out_unlock;
1220 * At this point, we know that if there is an exclusive
1221 * lease on this file, then we hold it on this filp
1222 * (otherwise our open of this file would have blocked).
1223 * And if we are trying to acquire an exclusive lease,
1224 * then the file is not open by anyone (including us)
1225 * except for this filp.
1227 for (before = &inode->i_flock;
1228 ((fl = *before) != NULL) && IS_LEASE(fl);
1229 before = &fl->fl_next) {
1230 if (fl->fl_file == filp)
1231 my_before = before;
1232 else if (fl->fl_type == (F_INPROGRESS | F_UNLCK))
1234 * Someone is in the process of opening this
1235 * file for writing so we may not take an
1236 * exclusive lease on it.
1238 wrlease_count++;
1239 else
1240 rdlease_count++;
1243 if ((arg == F_RDLCK && (wrlease_count > 0)) ||
1244 (arg == F_WRLCK && ((rdlease_count + wrlease_count) > 0)))
1245 goto out_unlock;
1247 if (my_before != NULL) {
1248 error = lease_modify(my_before, arg);
1249 goto out_unlock;
1252 error = 0;
1253 if (arg == F_UNLCK)
1254 goto out_unlock;
1256 error = -EINVAL;
1257 if (!leases_enable)
1258 goto out_unlock;
1260 error = lease_alloc(filp, arg, &fl);
1261 if (error)
1262 goto out_unlock;
1264 error = fasync_helper(fd, filp, 1, &fl->fl_fasync);
1265 if (error < 0) {
1266 locks_free_lock(fl);
1267 goto out_unlock;
1270 locks_insert_lock(before, fl);
1272 error = f_setown(filp, current->tgid, 1);
1273 out_unlock:
1274 unlock_kernel();
1275 return error;
1279 * sys_flock: - flock() system call.
1280 * @fd: the file descriptor to lock.
1281 * @cmd: the type of lock to apply.
1283 * Apply a %FL_FLOCK style lock to an open file descriptor.
1284 * The @cmd can be one of
1286 * %LOCK_SH -- a shared lock.
1288 * %LOCK_EX -- an exclusive lock.
1290 * %LOCK_UN -- remove an existing lock.
1292 * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes.
1294 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1295 * processes read and write access respectively.
1297 asmlinkage long sys_flock(unsigned int fd, unsigned int cmd)
1299 struct file *filp;
1300 struct file_lock *lock;
1301 int can_sleep, unlock;
1302 int error;
1304 error = -EBADF;
1305 filp = fget(fd);
1306 if (!filp)
1307 goto out;
1309 can_sleep = !(cmd & LOCK_NB);
1310 cmd &= ~LOCK_NB;
1311 unlock = (cmd == LOCK_UN);
1313 if (!unlock && !(cmd & LOCK_MAND) && !(filp->f_mode & 3))
1314 goto out_putf;
1316 error = flock_make_lock(filp, &lock, cmd);
1317 if (error)
1318 goto out_putf;
1319 if (can_sleep)
1320 lock->fl_flags |= FL_SLEEP;
1322 error = security_file_lock(filp, cmd);
1323 if (error)
1324 goto out_free;
1326 for (;;) {
1327 error = flock_lock_file(filp, lock);
1328 if ((error != -EAGAIN) || !can_sleep)
1329 break;
1330 error = wait_event_interruptible(lock->fl_wait, !lock->fl_next);
1331 if (!error)
1332 continue;
1334 locks_delete_block(lock);
1335 break;
1338 out_free:
1339 if (list_empty(&lock->fl_link)) {
1340 locks_free_lock(lock);
1343 out_putf:
1344 fput(filp);
1345 out:
1346 return error;
1349 /* Report the first existing lock that would conflict with l.
1350 * This implements the F_GETLK command of fcntl().
1352 int fcntl_getlk(struct file *filp, struct flock __user *l)
1354 struct file_lock *fl, file_lock;
1355 struct flock flock;
1356 int error;
1358 error = -EFAULT;
1359 if (copy_from_user(&flock, l, sizeof(flock)))
1360 goto out;
1361 error = -EINVAL;
1362 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1363 goto out;
1365 error = flock_to_posix_lock(filp, &file_lock, &flock);
1366 if (error)
1367 goto out;
1369 if (filp->f_op && filp->f_op->lock) {
1370 error = filp->f_op->lock(filp, F_GETLK, &file_lock);
1371 if (error < 0)
1372 goto out;
1373 else if (error == LOCK_USE_CLNT)
1374 /* Bypass for NFS with no locking - 2.0.36 compat */
1375 fl = posix_test_lock(filp, &file_lock);
1376 else
1377 fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
1378 } else {
1379 fl = posix_test_lock(filp, &file_lock);
1382 flock.l_type = F_UNLCK;
1383 if (fl != NULL) {
1384 flock.l_pid = fl->fl_pid;
1385 #if BITS_PER_LONG == 32
1387 * Make sure we can represent the posix lock via
1388 * legacy 32bit flock.
1390 error = -EOVERFLOW;
1391 if (fl->fl_start > OFFT_OFFSET_MAX)
1392 goto out;
1393 if ((fl->fl_end != OFFSET_MAX)
1394 && (fl->fl_end > OFFT_OFFSET_MAX))
1395 goto out;
1396 #endif
1397 flock.l_start = fl->fl_start;
1398 flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
1399 fl->fl_end - fl->fl_start + 1;
1400 flock.l_whence = 0;
1401 flock.l_type = fl->fl_type;
1403 error = -EFAULT;
1404 if (!copy_to_user(l, &flock, sizeof(flock)))
1405 error = 0;
1407 out:
1408 return error;
1411 /* Apply the lock described by l to an open file descriptor.
1412 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1414 int fcntl_setlk(struct file *filp, unsigned int cmd, struct flock __user *l)
1416 struct file_lock *file_lock = locks_alloc_lock();
1417 struct flock flock;
1418 struct inode *inode;
1419 int error;
1421 if (file_lock == NULL)
1422 return -ENOLCK;
1425 * This might block, so we do it before checking the inode.
1427 error = -EFAULT;
1428 if (copy_from_user(&flock, l, sizeof(flock)))
1429 goto out;
1431 inode = filp->f_dentry->d_inode;
1433 /* Don't allow mandatory locks on files that may be memory mapped
1434 * and shared.
1436 if (IS_MANDLOCK(inode) &&
1437 (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID) {
1438 struct address_space *mapping = inode->i_mapping;
1440 if (!list_empty(&mapping->i_mmap_shared)) {
1441 error = -EAGAIN;
1442 goto out;
1446 error = flock_to_posix_lock(filp, file_lock, &flock);
1447 if (error)
1448 goto out;
1449 if (cmd == F_SETLKW) {
1450 file_lock->fl_flags |= FL_SLEEP;
1453 error = -EBADF;
1454 switch (flock.l_type) {
1455 case F_RDLCK:
1456 if (!(filp->f_mode & FMODE_READ))
1457 goto out;
1458 break;
1459 case F_WRLCK:
1460 if (!(filp->f_mode & FMODE_WRITE))
1461 goto out;
1462 break;
1463 case F_UNLCK:
1464 break;
1465 default:
1466 error = -EINVAL;
1467 goto out;
1470 error = security_file_lock(filp, file_lock->fl_type);
1471 if (error)
1472 goto out;
1474 if (filp->f_op && filp->f_op->lock != NULL) {
1475 error = filp->f_op->lock(filp, cmd, file_lock);
1476 if (error < 0)
1477 goto out;
1480 for (;;) {
1481 error = __posix_lock_file(inode, file_lock);
1482 if ((error != -EAGAIN) || (cmd == F_SETLK))
1483 break;
1484 error = wait_event_interruptible(file_lock->fl_wait,
1485 !file_lock->fl_next);
1486 if (!error)
1487 continue;
1489 locks_delete_block(file_lock);
1490 break;
1493 out:
1494 locks_free_lock(file_lock);
1495 return error;
1498 #if BITS_PER_LONG == 32
1499 /* Report the first existing lock that would conflict with l.
1500 * This implements the F_GETLK command of fcntl().
1502 int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
1504 struct file_lock *fl, file_lock;
1505 struct flock64 flock;
1506 int error;
1508 error = -EFAULT;
1509 if (copy_from_user(&flock, l, sizeof(flock)))
1510 goto out;
1511 error = -EINVAL;
1512 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1513 goto out;
1515 error = flock64_to_posix_lock(filp, &file_lock, &flock);
1516 if (error)
1517 goto out;
1519 if (filp->f_op && filp->f_op->lock) {
1520 error = filp->f_op->lock(filp, F_GETLK, &file_lock);
1521 if (error < 0)
1522 goto out;
1523 else if (error == LOCK_USE_CLNT)
1524 /* Bypass for NFS with no locking - 2.0.36 compat */
1525 fl = posix_test_lock(filp, &file_lock);
1526 else
1527 fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
1528 } else {
1529 fl = posix_test_lock(filp, &file_lock);
1532 flock.l_type = F_UNLCK;
1533 if (fl != NULL) {
1534 flock.l_pid = fl->fl_pid;
1535 flock.l_start = fl->fl_start;
1536 flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
1537 fl->fl_end - fl->fl_start + 1;
1538 flock.l_whence = 0;
1539 flock.l_type = fl->fl_type;
1541 error = -EFAULT;
1542 if (!copy_to_user(l, &flock, sizeof(flock)))
1543 error = 0;
1545 out:
1546 return error;
1549 /* Apply the lock described by l to an open file descriptor.
1550 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1552 int fcntl_setlk64(struct file *filp, unsigned int cmd, struct flock64 __user *l)
1554 struct file_lock *file_lock = locks_alloc_lock();
1555 struct flock64 flock;
1556 struct inode *inode;
1557 int error;
1559 if (file_lock == NULL)
1560 return -ENOLCK;
1563 * This might block, so we do it before checking the inode.
1565 error = -EFAULT;
1566 if (copy_from_user(&flock, l, sizeof(flock)))
1567 goto out;
1569 inode = filp->f_dentry->d_inode;
1571 /* Don't allow mandatory locks on files that may be memory mapped
1572 * and shared.
1574 if (IS_MANDLOCK(inode) &&
1575 (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID) {
1576 struct address_space *mapping = inode->i_mapping;
1578 if (!list_empty(&mapping->i_mmap_shared)) {
1579 error = -EAGAIN;
1580 goto out;
1584 error = flock64_to_posix_lock(filp, file_lock, &flock);
1585 if (error)
1586 goto out;
1587 if (cmd == F_SETLKW64) {
1588 file_lock->fl_flags |= FL_SLEEP;
1591 error = -EBADF;
1592 switch (flock.l_type) {
1593 case F_RDLCK:
1594 if (!(filp->f_mode & FMODE_READ))
1595 goto out;
1596 break;
1597 case F_WRLCK:
1598 if (!(filp->f_mode & FMODE_WRITE))
1599 goto out;
1600 break;
1601 case F_UNLCK:
1602 break;
1603 default:
1604 error = -EINVAL;
1605 goto out;
1608 error = security_file_lock(filp, file_lock->fl_type);
1609 if (error)
1610 goto out;
1612 if (filp->f_op && filp->f_op->lock != NULL) {
1613 error = filp->f_op->lock(filp, cmd, file_lock);
1614 if (error < 0)
1615 goto out;
1618 for (;;) {
1619 error = __posix_lock_file(inode, file_lock);
1620 if ((error != -EAGAIN) || (cmd == F_SETLK64))
1621 break;
1622 error = wait_event_interruptible(file_lock->fl_wait,
1623 !file_lock->fl_next);
1624 if (!error)
1625 continue;
1627 locks_delete_block(file_lock);
1628 break;
1631 out:
1632 locks_free_lock(file_lock);
1633 return error;
1635 #endif /* BITS_PER_LONG == 32 */
1638 * This function is called when the file is being removed
1639 * from the task's fd array. POSIX locks belonging to this task
1640 * are deleted at this time.
1642 void locks_remove_posix(struct file *filp, fl_owner_t owner)
1644 struct file_lock lock, **before;
1647 * If there are no locks held on this file, we don't need to call
1648 * posix_lock_file(). Another process could be setting a lock on this
1649 * file at the same time, but we wouldn't remove that lock anyway.
1651 before = &filp->f_dentry->d_inode->i_flock;
1652 if (*before == NULL)
1653 return;
1655 lock.fl_type = F_UNLCK;
1656 lock.fl_flags = FL_POSIX;
1657 lock.fl_start = 0;
1658 lock.fl_end = OFFSET_MAX;
1659 lock.fl_owner = owner;
1660 lock.fl_pid = current->tgid;
1661 lock.fl_file = filp;
1663 if (filp->f_op && filp->f_op->lock != NULL) {
1664 filp->f_op->lock(filp, F_SETLK, &lock);
1665 /* Ignore any error -- we must remove the locks anyway */
1668 /* Can't use posix_lock_file here; we need to remove it no matter
1669 * which pid we have.
1671 lock_kernel();
1672 while (*before != NULL) {
1673 struct file_lock *fl = *before;
1674 if (IS_POSIX(fl) && (fl->fl_owner == owner)) {
1675 locks_delete_lock(before);
1676 continue;
1678 before = &fl->fl_next;
1680 unlock_kernel();
1684 * This function is called on the last close of an open file.
1686 void locks_remove_flock(struct file *filp)
1688 struct inode * inode = filp->f_dentry->d_inode;
1689 struct file_lock *fl;
1690 struct file_lock **before;
1692 if (!inode->i_flock)
1693 return;
1695 lock_kernel();
1696 before = &inode->i_flock;
1698 while ((fl = *before) != NULL) {
1699 if (fl->fl_file == filp) {
1700 if (IS_FLOCK(fl)) {
1701 locks_delete_lock(before);
1702 continue;
1704 if (IS_LEASE(fl)) {
1705 lease_modify(before, F_UNLCK);
1706 continue;
1708 BUG();
1710 before = &fl->fl_next;
1712 unlock_kernel();
1716 * posix_block_lock - blocks waiting for a file lock
1717 * @blocker: the lock which is blocking
1718 * @waiter: the lock which conflicts and has to wait
1720 * lockd needs to block waiting for locks.
1722 void
1723 posix_block_lock(struct file_lock *blocker, struct file_lock *waiter)
1725 locks_insert_block(blocker, waiter);
1729 * posix_unblock_lock - stop waiting for a file lock
1730 * @filp: how the file was opened
1731 * @waiter: the lock which was waiting
1733 * lockd needs to block waiting for locks.
1735 void
1736 posix_unblock_lock(struct file *filp, struct file_lock *waiter)
1739 * A remote machine may cancel the lock request after it's been
1740 * granted locally. If that happens, we need to delete the lock.
1742 lock_kernel();
1743 if (waiter->fl_next) {
1744 __locks_delete_block(waiter);
1745 unlock_kernel();
1746 } else {
1747 unlock_kernel();
1748 waiter->fl_type = F_UNLCK;
1749 posix_lock_file(filp, waiter);
1753 static void lock_get_status(char* out, struct file_lock *fl, int id, char *pfx)
1755 struct inode *inode = NULL;
1757 if (fl->fl_file != NULL)
1758 inode = fl->fl_file->f_dentry->d_inode;
1760 out += sprintf(out, "%d:%s ", id, pfx);
1761 if (IS_POSIX(fl)) {
1762 out += sprintf(out, "%6s %s ",
1763 (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
1764 (inode == NULL) ? "*NOINODE*" :
1765 (IS_MANDLOCK(inode) &&
1766 (inode->i_mode & (S_IXGRP | S_ISGID)) == S_ISGID) ?
1767 "MANDATORY" : "ADVISORY ");
1768 } else if (IS_FLOCK(fl)) {
1769 if (fl->fl_type & LOCK_MAND) {
1770 out += sprintf(out, "FLOCK MSNFS ");
1771 } else {
1772 out += sprintf(out, "FLOCK ADVISORY ");
1774 } else if (IS_LEASE(fl)) {
1775 out += sprintf(out, "LEASE ");
1776 if (fl->fl_type & F_INPROGRESS)
1777 out += sprintf(out, "BREAKING ");
1778 else if (fl->fl_file)
1779 out += sprintf(out, "ACTIVE ");
1780 else
1781 out += sprintf(out, "BREAKER ");
1782 } else {
1783 out += sprintf(out, "UNKNOWN UNKNOWN ");
1785 if (fl->fl_type & LOCK_MAND) {
1786 out += sprintf(out, "%s ",
1787 (fl->fl_type & LOCK_READ)
1788 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
1789 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
1790 } else {
1791 out += sprintf(out, "%s ",
1792 (fl->fl_type & F_INPROGRESS)
1793 ? (fl->fl_type & F_UNLCK) ? "UNLCK" : "READ "
1794 : (fl->fl_type & F_WRLCK) ? "WRITE" : "READ ");
1796 if (inode) {
1797 #if WE_CAN_BREAK_LSLK_NOW
1798 out += sprintf(out, "%d %s:%ld ", fl->fl_pid,
1799 inode->i_sb->s_id, inode->i_ino);
1800 #else
1801 /* userspace relies on this representation of dev_t ;-( */
1802 out += sprintf(out, "%d %02x:%02x:%ld ", fl->fl_pid,
1803 MAJOR(inode->i_sb->s_dev),
1804 MINOR(inode->i_sb->s_dev), inode->i_ino);
1805 #endif
1806 } else {
1807 out += sprintf(out, "%d <none>:0 ", fl->fl_pid);
1809 if (IS_POSIX(fl)) {
1810 if (fl->fl_end == OFFSET_MAX)
1811 out += sprintf(out, "%Ld EOF\n", fl->fl_start);
1812 else
1813 out += sprintf(out, "%Ld %Ld\n", fl->fl_start,
1814 fl->fl_end);
1815 } else {
1816 out += sprintf(out, "0 EOF\n");
1820 static void move_lock_status(char **p, off_t* pos, off_t offset)
1822 int len;
1823 len = strlen(*p);
1824 if(*pos >= offset) {
1825 /* the complete line is valid */
1826 *p += len;
1827 *pos += len;
1828 return;
1830 if(*pos+len > offset) {
1831 /* use the second part of the line */
1832 int i = offset-*pos;
1833 memmove(*p,*p+i,len-i);
1834 *p += len-i;
1835 *pos += len;
1836 return;
1838 /* discard the complete line */
1839 *pos += len;
1843 * get_locks_status - reports lock usage in /proc/locks
1844 * @buffer: address in userspace to write into
1845 * @start: ?
1846 * @offset: how far we are through the buffer
1847 * @length: how much to read
1850 int get_locks_status(char *buffer, char **start, off_t offset, int length)
1852 struct list_head *tmp;
1853 char *q = buffer;
1854 off_t pos = 0;
1855 int i = 0;
1857 lock_kernel();
1858 list_for_each(tmp, &file_lock_list) {
1859 struct list_head *btmp;
1860 struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
1861 lock_get_status(q, fl, ++i, "");
1862 move_lock_status(&q, &pos, offset);
1864 if(pos >= offset+length)
1865 goto done;
1867 list_for_each(btmp, &fl->fl_block) {
1868 struct file_lock *bfl = list_entry(btmp,
1869 struct file_lock, fl_block);
1870 lock_get_status(q, bfl, i, " ->");
1871 move_lock_status(&q, &pos, offset);
1873 if(pos >= offset+length)
1874 goto done;
1877 done:
1878 unlock_kernel();
1879 *start = buffer;
1880 if(q-buffer < length)
1881 return (q-buffer);
1882 return length;
1886 * lock_may_read - checks that the region is free of locks
1887 * @inode: the inode that is being read
1888 * @start: the first byte to read
1889 * @len: the number of bytes to read
1891 * Emulates Windows locking requirements. Whole-file
1892 * mandatory locks (share modes) can prohibit a read and
1893 * byte-range POSIX locks can prohibit a read if they overlap.
1895 * N.B. this function is only ever called
1896 * from knfsd and ownership of locks is never checked.
1898 int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
1900 struct file_lock *fl;
1901 int result = 1;
1902 lock_kernel();
1903 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1904 if (IS_POSIX(fl)) {
1905 if (fl->fl_type == F_RDLCK)
1906 continue;
1907 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
1908 continue;
1909 } else if (IS_FLOCK(fl)) {
1910 if (!(fl->fl_type & LOCK_MAND))
1911 continue;
1912 if (fl->fl_type & LOCK_READ)
1913 continue;
1914 } else
1915 continue;
1916 result = 0;
1917 break;
1919 unlock_kernel();
1920 return result;
1924 * lock_may_write - checks that the region is free of locks
1925 * @inode: the inode that is being written
1926 * @start: the first byte to write
1927 * @len: the number of bytes to write
1929 * Emulates Windows locking requirements. Whole-file
1930 * mandatory locks (share modes) can prohibit a write and
1931 * byte-range POSIX locks can prohibit a write if they overlap.
1933 * N.B. this function is only ever called
1934 * from knfsd and ownership of locks is never checked.
1936 int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
1938 struct file_lock *fl;
1939 int result = 1;
1940 lock_kernel();
1941 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1942 if (IS_POSIX(fl)) {
1943 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
1944 continue;
1945 } else if (IS_FLOCK(fl)) {
1946 if (!(fl->fl_type & LOCK_MAND))
1947 continue;
1948 if (fl->fl_type & LOCK_WRITE)
1949 continue;
1950 } else
1951 continue;
1952 result = 0;
1953 break;
1955 unlock_kernel();
1956 return result;
1959 static int __init filelock_init(void)
1961 filelock_cache = kmem_cache_create("file_lock_cache",
1962 sizeof(struct file_lock), 0, 0, init_once, NULL);
1963 if (!filelock_cache)
1964 panic("cannot create file lock slab cache");
1965 return 0;
1968 module_init(filelock_init)
1970 EXPORT_SYMBOL(file_lock_list);
1971 EXPORT_SYMBOL(locks_init_lock);
1972 EXPORT_SYMBOL(locks_copy_lock);
1973 EXPORT_SYMBOL(posix_lock_file);
1974 EXPORT_SYMBOL(posix_test_lock);
1975 EXPORT_SYMBOL(posix_block_lock);
1976 EXPORT_SYMBOL(posix_unblock_lock);
1977 EXPORT_SYMBOL(posix_locks_deadlock);
1978 EXPORT_SYMBOL(locks_mandatory_area);