aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_dfrag.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2008-02-04 20:13:15 -0500
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>2008-02-07 02:22:24 -0500
commitf6aa7f2184330262e1cb5f7802536e5346bd46a3 (patch)
tree73edcd57933b033bf69e6ae5cf46e102b47b41cb /fs/xfs/xfs_dfrag.c
parent35fec8df65217546f6d9d508b203c1d135a67fbc (diff)
[XFS] stop re-checking permissions in xfs_swapext
xfs_swapext should simplify check if we have a writeable file descriptor instead of re-checking the permissions using xfs_iaccess. Add an additional check to refuse O_APPEND file descriptors because swapext is not an append-only write operation. SGI-PV: 971186 SGI-Modid: xfs-linux-melb:xfs-kern:30369a Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_dfrag.c')
-rw-r--r--fs/xfs/xfs_dfrag.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/fs/xfs/xfs_dfrag.c b/fs/xfs/xfs_dfrag.c
index 5d3285952ff7..3f53fad356a3 100644
--- a/fs/xfs/xfs_dfrag.c
+++ b/fs/xfs/xfs_dfrag.c
@@ -74,12 +74,23 @@ xfs_swapext(
74 goto out_free_sxp; 74 goto out_free_sxp;
75 } 75 }
76 76
77 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND)) {
78 error = XFS_ERROR(EBADF);
79 goto out_put_file;
80 }
81
77 target_file = fget((int)sxp->sx_fdtmp); 82 target_file = fget((int)sxp->sx_fdtmp);
78 if (!target_file) { 83 if (!target_file) {
79 error = XFS_ERROR(EINVAL); 84 error = XFS_ERROR(EINVAL);
80 goto out_put_file; 85 goto out_put_file;
81 } 86 }
82 87
88 if (!(target_file->f_mode & FMODE_WRITE) ||
89 (target_file->f_flags & O_APPEND)) {
90 error = XFS_ERROR(EBADF);
91 goto out_put_target_file;
92 }
93
83 ip = XFS_I(file->f_path.dentry->d_inode); 94 ip = XFS_I(file->f_path.dentry->d_inode);
84 tip = XFS_I(target_file->f_path.dentry->d_inode); 95 tip = XFS_I(target_file->f_path.dentry->d_inode);
85 96
@@ -154,15 +165,6 @@ xfs_swap_extents(
154 xfs_lock_inodes(ips, 2, 0, lock_flags); 165 xfs_lock_inodes(ips, 2, 0, lock_flags);
155 locked = 1; 166 locked = 1;
156 167
157 /* Check permissions */
158 error = xfs_iaccess(ip, S_IWUSR, NULL);
159 if (error)
160 goto error0;
161
162 error = xfs_iaccess(tip, S_IWUSR, NULL);
163 if (error)
164 goto error0;
165
166 /* Verify that both files have the same format */ 168 /* Verify that both files have the same format */
167 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) { 169 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
168 error = XFS_ERROR(EINVAL); 170 error = XFS_ERROR(EINVAL);