CIFS: Fix VFS lock usage for oplocked files
We can deadlock if we have a write oplock and two processes use the same file handle. In this case the first process can't unlock its lock if the second process blocked on the lock in the same time. Fix it by using posix_lock_file rather than posix_lock_file_wait under cinode->lock_mutex. If we request a blocking lock and posix_lock_file indicates that there is another lock that prevents us, wait untill that lock is released and restart our call. Cc: stable@kernel.org Acked-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Pavel Shilovsky <piastry@etersoft.ru> Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
Родитель
9ebb389d0a
Коммит
66189be74f
|
@ -835,13 +835,21 @@ cifs_posix_lock_set(struct file *file, struct file_lock *flock)
|
||||||
if ((flock->fl_flags & FL_POSIX) == 0)
|
if ((flock->fl_flags & FL_POSIX) == 0)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
|
try_again:
|
||||||
mutex_lock(&cinode->lock_mutex);
|
mutex_lock(&cinode->lock_mutex);
|
||||||
if (!cinode->can_cache_brlcks) {
|
if (!cinode->can_cache_brlcks) {
|
||||||
mutex_unlock(&cinode->lock_mutex);
|
mutex_unlock(&cinode->lock_mutex);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
rc = posix_lock_file_wait(file, flock);
|
|
||||||
|
rc = posix_lock_file(file, flock, NULL);
|
||||||
mutex_unlock(&cinode->lock_mutex);
|
mutex_unlock(&cinode->lock_mutex);
|
||||||
|
if (rc == FILE_LOCK_DEFERRED) {
|
||||||
|
rc = wait_event_interruptible(flock->fl_wait, !flock->fl_next);
|
||||||
|
if (!rc)
|
||||||
|
goto try_again;
|
||||||
|
locks_delete_block(flock);
|
||||||
|
}
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -510,12 +510,13 @@ static void __locks_delete_block(struct file_lock *waiter)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*/
|
*/
|
||||||
static void locks_delete_block(struct file_lock *waiter)
|
void locks_delete_block(struct file_lock *waiter)
|
||||||
{
|
{
|
||||||
lock_flocks();
|
lock_flocks();
|
||||||
__locks_delete_block(waiter);
|
__locks_delete_block(waiter);
|
||||||
unlock_flocks();
|
unlock_flocks();
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(locks_delete_block);
|
||||||
|
|
||||||
/* Insert waiter into blocker's block list.
|
/* Insert waiter into blocker's block list.
|
||||||
* We use a circular list so that processes can be easily woken up in
|
* We use a circular list so that processes can be easily woken up in
|
||||||
|
|
|
@ -1215,6 +1215,7 @@ extern int vfs_setlease(struct file *, long, struct file_lock **);
|
||||||
extern int lease_modify(struct file_lock **, int);
|
extern int lease_modify(struct file_lock **, int);
|
||||||
extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
|
extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
|
||||||
extern int lock_may_write(struct inode *, loff_t start, unsigned long count);
|
extern int lock_may_write(struct inode *, loff_t start, unsigned long count);
|
||||||
|
extern void locks_delete_block(struct file_lock *waiter);
|
||||||
extern void lock_flocks(void);
|
extern void lock_flocks(void);
|
||||||
extern void unlock_flocks(void);
|
extern void unlock_flocks(void);
|
||||||
#else /* !CONFIG_FILE_LOCKING */
|
#else /* !CONFIG_FILE_LOCKING */
|
||||||
|
@ -1359,6 +1360,10 @@ static inline int lock_may_write(struct inode *inode, loff_t start,
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void locks_delete_block(struct file_lock *waiter)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
static inline void lock_flocks(void)
|
static inline void lock_flocks(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче