OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [fs/] [locks.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.