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