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