don't bother with {get,put}_write_access() on non-regular files
it's pointless and actually leads to wrong behaviour in at least one moderately convoluted case (pipe(), close one end, try to get to another via /proc/*/fd and run into ETXTBUSY). Cc: stable@vger.kernel.org Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
44ba8406d0
commit
dd20908a8a
@ -209,10 +209,10 @@ static void drop_file_write_access(struct file *file)
|
|||||||
struct dentry *dentry = file->f_path.dentry;
|
struct dentry *dentry = file->f_path.dentry;
|
||||||
struct inode *inode = dentry->d_inode;
|
struct inode *inode = dentry->d_inode;
|
||||||
|
|
||||||
put_write_access(inode);
|
|
||||||
|
|
||||||
if (special_file(inode->i_mode))
|
if (special_file(inode->i_mode))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
put_write_access(inode);
|
||||||
if (file_check_writeable(file) != 0)
|
if (file_check_writeable(file) != 0)
|
||||||
return;
|
return;
|
||||||
__mnt_drop_write(mnt);
|
__mnt_drop_write(mnt);
|
||||||
|
26
fs/open.c
26
fs/open.c
@ -641,23 +641,12 @@ out:
|
|||||||
static inline int __get_file_write_access(struct inode *inode,
|
static inline int __get_file_write_access(struct inode *inode,
|
||||||
struct vfsmount *mnt)
|
struct vfsmount *mnt)
|
||||||
{
|
{
|
||||||
int error;
|
int error = get_write_access(inode);
|
||||||
error = get_write_access(inode);
|
|
||||||
if (error)
|
if (error)
|
||||||
return error;
|
return error;
|
||||||
/*
|
error = __mnt_want_write(mnt);
|
||||||
* Do not take mount writer counts on
|
if (error)
|
||||||
* special files since no writes to
|
put_write_access(inode);
|
||||||
* the mount itself will occur.
|
|
||||||
*/
|
|
||||||
if (!special_file(inode->i_mode)) {
|
|
||||||
/*
|
|
||||||
* Balanced in __fput()
|
|
||||||
*/
|
|
||||||
error = __mnt_want_write(mnt);
|
|
||||||
if (error)
|
|
||||||
put_write_access(inode);
|
|
||||||
}
|
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -690,12 +679,11 @@ static int do_dentry_open(struct file *f,
|
|||||||
|
|
||||||
path_get(&f->f_path);
|
path_get(&f->f_path);
|
||||||
inode = f->f_inode = f->f_path.dentry->d_inode;
|
inode = f->f_inode = f->f_path.dentry->d_inode;
|
||||||
if (f->f_mode & FMODE_WRITE) {
|
if (f->f_mode & FMODE_WRITE && !special_file(inode->i_mode)) {
|
||||||
error = __get_file_write_access(inode, f->f_path.mnt);
|
error = __get_file_write_access(inode, f->f_path.mnt);
|
||||||
if (error)
|
if (error)
|
||||||
goto cleanup_file;
|
goto cleanup_file;
|
||||||
if (!special_file(inode->i_mode))
|
file_take_write(f);
|
||||||
file_take_write(f);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
f->f_mapping = inode->i_mapping;
|
f->f_mapping = inode->i_mapping;
|
||||||
@ -742,7 +730,6 @@ static int do_dentry_open(struct file *f,
|
|||||||
cleanup_all:
|
cleanup_all:
|
||||||
fops_put(f->f_op);
|
fops_put(f->f_op);
|
||||||
if (f->f_mode & FMODE_WRITE) {
|
if (f->f_mode & FMODE_WRITE) {
|
||||||
put_write_access(inode);
|
|
||||||
if (!special_file(inode->i_mode)) {
|
if (!special_file(inode->i_mode)) {
|
||||||
/*
|
/*
|
||||||
* We don't consider this a real
|
* We don't consider this a real
|
||||||
@ -750,6 +737,7 @@ cleanup_all:
|
|||||||
* because it all happenend right
|
* because it all happenend right
|
||||||
* here, so just reset the state.
|
* here, so just reset the state.
|
||||||
*/
|
*/
|
||||||
|
put_write_access(inode);
|
||||||
file_reset_write(f);
|
file_reset_write(f);
|
||||||
__mnt_drop_write(f->f_path.mnt);
|
__mnt_drop_write(f->f_path.mnt);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user