diff options
Diffstat (limited to 'fs/ocfs2/file.c')
| -rw-r--r-- | fs/ocfs2/file.c | 25 | 
1 files changed, 13 insertions, 12 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 37d313ede15..6474cb44004 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -1116,7 +1116,8 @@ int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)  			    (unsigned long long)OCFS2_I(inode)->ip_blkno,  			    dentry->d_name.len, dentry->d_name.name,  			    attr->ia_valid, attr->ia_mode, -			    attr->ia_uid, attr->ia_gid); +			    from_kuid(&init_user_ns, attr->ia_uid), +			    from_kgid(&init_user_ns, attr->ia_gid));  	/* ensuring we don't even attempt to truncate a symlink */  	if (S_ISLNK(inode->i_mode)) @@ -1174,14 +1175,14 @@ int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)  		}  	} -	if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) || -	    (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) { +	if ((attr->ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) || +	    (attr->ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {  		/*  		 * Gather pointers to quota structures so that allocation /  		 * freeing of quota structures happens here and not inside  		 * dquot_transfer() where we have problems with lock ordering  		 */ -		if (attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid +		if (attr->ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)  		    && OCFS2_HAS_RO_COMPAT_FEATURE(sb,  		    OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {  			transfer_to[USRQUOTA] = dqget(sb, make_kqid_uid(attr->ia_uid)); @@ -1190,7 +1191,7 @@ int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)  				goto bail_unlock;  			}  		} -		if (attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid +		if (attr->ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid)  		    && OCFS2_HAS_RO_COMPAT_FEATURE(sb,  		    OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {  			transfer_to[GRPQUOTA] = dqget(sb, make_kqid_gid(attr->ia_gid)); @@ -1949,7 +1950,7 @@ out:  int ocfs2_change_file_space(struct file *file, unsigned int cmd,  			    struct ocfs2_space_resv *sr)  { -	struct inode *inode = file->f_path.dentry->d_inode; +	struct inode *inode = file_inode(file);  	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);  	int ret; @@ -1977,7 +1978,7 @@ int ocfs2_change_file_space(struct file *file, unsigned int cmd,  static long ocfs2_fallocate(struct file *file, int mode, loff_t offset,  			    loff_t len)  { -	struct inode *inode = file->f_path.dentry->d_inode; +	struct inode *inode = file_inode(file);  	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);  	struct ocfs2_space_resv sr;  	int change_size = 1; @@ -2232,7 +2233,7 @@ static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,  	loff_t old_size, *ppos = &iocb->ki_pos;  	u32 old_clusters;  	struct file *file = iocb->ki_filp; -	struct inode *inode = file->f_path.dentry->d_inode; +	struct inode *inode = file_inode(file);  	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);  	int full_coherency = !(osb->s_mount_opt &  			       OCFS2_MOUNT_COHERENCY_BUFFERED); @@ -2516,7 +2517,7 @@ static ssize_t ocfs2_file_splice_read(struct file *in,  				      unsigned int flags)  {  	int ret = 0, lock_level = 0; -	struct inode *inode = in->f_path.dentry->d_inode; +	struct inode *inode = file_inode(in);  	trace_ocfs2_file_splice_read(inode, in, in->f_path.dentry,  			(unsigned long long)OCFS2_I(inode)->ip_blkno, @@ -2526,7 +2527,7 @@ static ssize_t ocfs2_file_splice_read(struct file *in,  	/*  	 * See the comment in ocfs2_file_aio_read()  	 */ -	ret = ocfs2_inode_lock_atime(inode, in->f_vfsmnt, &lock_level); +	ret = ocfs2_inode_lock_atime(inode, in->f_path.mnt, &lock_level);  	if (ret < 0) {  		mlog_errno(ret);  		goto bail; @@ -2546,7 +2547,7 @@ static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,  {  	int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;  	struct file *filp = iocb->ki_filp; -	struct inode *inode = filp->f_path.dentry->d_inode; +	struct inode *inode = file_inode(filp);  	trace_ocfs2_file_aio_read(inode, filp, filp->f_path.dentry,  			(unsigned long long)OCFS2_I(inode)->ip_blkno, @@ -2589,7 +2590,7 @@ static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,  	 * like i_size. This allows the checks down below  	 * generic_file_aio_read() a chance of actually working.  	 */ -	ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level); +	ret = ocfs2_inode_lock_atime(inode, filp->f_path.mnt, &lock_level);  	if (ret < 0) {  		mlog_errno(ret);  		goto bail;  |