diff options
author | Jan Kara | 2007-11-15 01:58:56 +0100 |
---|---|---|
committer | Linus Torvalds | 2007-11-15 03:45:38 +0100 |
commit | e47776a0a41a14a5634633c96e590827f552c4b5 (patch) | |
tree | 44d5168b83fb1d8d72668728c690116d34f6711f /fs/reiserfs/ioctl.c | |
parent | drivers/video/s1d13xxxfb.c: fix build as module with dbg (diff) | |
download | kernel-qcow2-linux-e47776a0a41a14a5634633c96e590827f552c4b5.tar.gz kernel-qcow2-linux-e47776a0a41a14a5634633c96e590827f552c4b5.tar.xz kernel-qcow2-linux-e47776a0a41a14a5634633c96e590827f552c4b5.zip |
Forbid user to change file flags on quota files
Forbid user from changing file flags on quota files. User has no bussiness
in playing with these flags when quota is on. Furthermore there is a
remote possibility of deadlock due to a lock inversion between quota file's
i_mutex and transaction's start (i_mutex for quota file is locked only when
trasaction is started in quota operations) in ext3 and ext4.
Signed-off-by: Jan Kara <jack@suse.cz>
Cc: LIOU Payphone <lioupayphone@gmail.com>
Cc: <linux-ext4@vger.kernel.org>
Acked-by: Dave Kleikamp <shaggy@austin.ibm.com>
Cc: <reiserfs-dev@namesys.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs/ioctl.c')
-rw-r--r-- | fs/reiserfs/ioctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/reiserfs/ioctl.c b/fs/reiserfs/ioctl.c index c438a8f83f26..e0f0f098a523 100644 --- a/fs/reiserfs/ioctl.c +++ b/fs/reiserfs/ioctl.c @@ -57,6 +57,9 @@ int reiserfs_ioctl(struct inode *inode, struct file *filp, unsigned int cmd, if (get_user(flags, (int __user *)arg)) return -EFAULT; + /* Is it quota file? Do not allow user to mess with it. */ + if (IS_NOQUOTA(inode)) + return -EPERM; if (((flags ^ REISERFS_I(inode)-> i_attrs) & (REISERFS_IMMUTABLE_FL | REISERFS_APPEND_FL)) |