mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ceph: update the time stamps and try to drop the suid/sgid
commit e027253c4b
upstream.
The fallocate will try to clear the suid/sgid if a unprevileged user
changed the file.
There is no POSIX item requires that we should clear the suid/sgid
in fallocate code path but this is the default behaviour for most of
the filesystems and the VFS layer. And also the same for the write
code path, which have already support it.
And also we need to update the time stamps since the fallocate will
change the file contents.
Cc: stable@vger.kernel.org
Link: https://tracker.ceph.com/issues/58054
Signed-off-by: Xiubo Li <xiubli@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a73783e4e0
commit
efa228b2e6
1 changed files with 8 additions and 0 deletions
|
@ -2084,6 +2084,9 @@ static long ceph_fallocate(struct file *file, int mode,
|
|||
loff_t endoff = 0;
|
||||
loff_t size;
|
||||
|
||||
dout("%s %p %llx.%llx mode %x, offset %llu length %llu\n", __func__,
|
||||
inode, ceph_vinop(inode), mode, offset, length);
|
||||
|
||||
if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
|
@ -2124,6 +2127,10 @@ static long ceph_fallocate(struct file *file, int mode,
|
|||
if (ret < 0)
|
||||
goto unlock;
|
||||
|
||||
ret = file_modified(file);
|
||||
if (ret)
|
||||
goto put_caps;
|
||||
|
||||
filemap_invalidate_lock(inode->i_mapping);
|
||||
ceph_zero_pagecache_range(inode, offset, length);
|
||||
ret = ceph_zero_objects(inode, offset, length);
|
||||
|
@ -2139,6 +2146,7 @@ static long ceph_fallocate(struct file *file, int mode,
|
|||
}
|
||||
filemap_invalidate_unlock(inode->i_mapping);
|
||||
|
||||
put_caps:
|
||||
ceph_put_cap_refs(ci, got);
|
||||
unlock:
|
||||
inode_unlock(inode);
|
||||
|
|
Loading…
Reference in a new issue