xfs: do not write the buffer from xfs_iflush
[deliverable/linux.git] / fs / xfs / xfs_dfrag.c
CommitLineData
1da177e4 1/*
3e57ecf6 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4 22#include "xfs_log.h"
a844f451 23#include "xfs_inum.h"
1da177e4
LT
24#include "xfs_trans.h"
25#include "xfs_sb.h"
a844f451 26#include "xfs_ag.h"
1da177e4 27#include "xfs_mount.h"
1da177e4 28#include "xfs_bmap_btree.h"
1da177e4 29#include "xfs_dinode.h"
1da177e4 30#include "xfs_inode.h"
a844f451 31#include "xfs_inode_item.h"
1da177e4 32#include "xfs_bmap.h"
1da177e4
LT
33#include "xfs_itable.h"
34#include "xfs_dfrag.h"
35#include "xfs_error.h"
739bfb2a 36#include "xfs_vnodeops.h"
0b1b213f 37#include "xfs_trace.h"
1da177e4 38
6bded0f3
DC
39
40static int xfs_swap_extents(
41 xfs_inode_t *ip, /* target inode */
42 xfs_inode_t *tip, /* tmp inode */
43 xfs_swapext_t *sxp);
44
1da177e4 45/*
6bded0f3 46 * ioctl interface for swapext
1da177e4
LT
47 */
48int
49xfs_swapext(
743bb465 50 xfs_swapext_t *sxp)
1da177e4 51{
35fec8df 52 xfs_inode_t *ip, *tip;
6bded0f3 53 struct file *file, *tmp_file;
1da177e4 54 int error = 0;
1da177e4 55
1da177e4 56 /* Pull information for the target fd */
35fec8df
CH
57 file = fget((int)sxp->sx_fdtarget);
58 if (!file) {
1da177e4 59 error = XFS_ERROR(EINVAL);
ac12b4e2 60 goto out;
1da177e4
LT
61 }
62
1817176a
DR
63 if (!(file->f_mode & FMODE_WRITE) ||
64 !(file->f_mode & FMODE_READ) ||
65 (file->f_flags & O_APPEND)) {
f6aa7f21
CH
66 error = XFS_ERROR(EBADF);
67 goto out_put_file;
68 }
69
6bded0f3
DC
70 tmp_file = fget((int)sxp->sx_fdtmp);
71 if (!tmp_file) {
1da177e4 72 error = XFS_ERROR(EINVAL);
35fec8df 73 goto out_put_file;
1da177e4
LT
74 }
75
6bded0f3 76 if (!(tmp_file->f_mode & FMODE_WRITE) ||
1817176a 77 !(tmp_file->f_mode & FMODE_READ) ||
6bded0f3 78 (tmp_file->f_flags & O_APPEND)) {
f6aa7f21 79 error = XFS_ERROR(EBADF);
6bded0f3 80 goto out_put_tmp_file;
f6aa7f21
CH
81 }
82
7c8f7af6 83 if (IS_SWAPFILE(file->f_path.dentry->d_inode) ||
6bded0f3 84 IS_SWAPFILE(tmp_file->f_path.dentry->d_inode)) {
7c8f7af6 85 error = XFS_ERROR(EINVAL);
6bded0f3 86 goto out_put_tmp_file;
7c8f7af6
CH
87 }
88
35fec8df 89 ip = XFS_I(file->f_path.dentry->d_inode);
6bded0f3 90 tip = XFS_I(tmp_file->f_path.dentry->d_inode);
1da177e4
LT
91
92 if (ip->i_mount != tip->i_mount) {
35fec8df 93 error = XFS_ERROR(EINVAL);
6bded0f3 94 goto out_put_tmp_file;
1da177e4
LT
95 }
96
97 if (ip->i_ino == tip->i_ino) {
35fec8df 98 error = XFS_ERROR(EINVAL);
6bded0f3 99 goto out_put_tmp_file;
1da177e4
LT
100 }
101
35fec8df
CH
102 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
103 error = XFS_ERROR(EIO);
6bded0f3 104 goto out_put_tmp_file;
1da177e4
LT
105 }
106
541d7d3c 107 error = xfs_swap_extents(ip, tip, sxp);
3e57ecf6 108
6bded0f3
DC
109 out_put_tmp_file:
110 fput(tmp_file);
35fec8df
CH
111 out_put_file:
112 fput(file);
35fec8df 113 out:
3e57ecf6
OW
114 return error;
115}
116
e09f9860
DC
117/*
118 * We need to check that the format of the data fork in the temporary inode is
119 * valid for the target inode before doing the swap. This is not a problem with
120 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
121 * data fork depending on the space the attribute fork is taking so we can get
122 * invalid formats on the target inode.
123 *
124 * E.g. target has space for 7 extents in extent format, temp inode only has
125 * space for 6. If we defragment down to 7 extents, then the tmp format is a
126 * btree, but when swapped it needs to be in extent format. Hence we can't just
127 * blindly swap data forks on attr2 filesystems.
128 *
129 * Note that we check the swap in both directions so that we don't end up with
130 * a corrupt temporary inode, either.
131 *
132 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
133 * inode will prevent this situation from occurring, so all we do here is
134 * reject and log the attempt. basically we are putting the responsibility on
135 * userspace to get this right.
136 */
137static int
138xfs_swap_extents_check_format(
139 xfs_inode_t *ip, /* target inode */
140 xfs_inode_t *tip) /* tmp inode */
141{
142
143 /* Should never get a local format */
144 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
145 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
146 return EINVAL;
147
148 /*
149 * if the target inode has less extents that then temporary inode then
150 * why did userspace call us?
151 */
152 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
153 return EINVAL;
154
155 /*
156 * if the target inode is in extent form and the temp inode is in btree
157 * form then we will end up with the target inode in the wrong format
158 * as we already know there are less extents in the temp inode.
159 */
160 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
161 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
162 return EINVAL;
163
164 /* Check temp in extent form to max in target */
165 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
8096b1eb
CH
166 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
167 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
e09f9860
DC
168 return EINVAL;
169
170 /* Check target in extent form to max in temp */
171 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
8096b1eb
CH
172 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
173 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
e09f9860
DC
174 return EINVAL;
175
dd77ef92
DC
176 /*
177 * If we are in a btree format, check that the temp root block will fit
178 * in the target and that it has enough extents to be in btree format
179 * in the target.
180 *
181 * Note that we have to be careful to allow btree->extent conversions
182 * (a common defrag case) which will occur when the temp inode is in
183 * extent format...
184 */
8096b1eb
CH
185 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
186 if (XFS_IFORK_BOFF(ip) &&
187 tip->i_df.if_broot_bytes > XFS_IFORK_BOFF(ip))
188 return EINVAL;
189 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
190 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
191 return EINVAL;
192 }
e09f9860 193
dd77ef92 194 /* Reciprocal target->temp btree format checks */
8096b1eb
CH
195 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
196 if (XFS_IFORK_BOFF(tip) &&
197 ip->i_df.if_broot_bytes > XFS_IFORK_BOFF(tip))
198 return EINVAL;
199
200 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
201 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
202 return EINVAL;
203 }
e09f9860
DC
204
205 return 0;
206}
207
6bded0f3 208static int
3e57ecf6 209xfs_swap_extents(
e09f9860
DC
210 xfs_inode_t *ip, /* target inode */
211 xfs_inode_t *tip, /* tmp inode */
3e57ecf6
OW
212 xfs_swapext_t *sxp)
213{
45c51b99 214 xfs_mount_t *mp = ip->i_mount;
3e57ecf6
OW
215 xfs_trans_t *tp;
216 xfs_bstat_t *sbp = &sxp->sx_stat;
3e57ecf6 217 xfs_ifork_t *tempifp, *ifp, *tifp;
f5d8d5c4 218 int src_log_flags, target_log_flags;
3e57ecf6
OW
219 int error = 0;
220 int aforkblks = 0;
221 int taforkblks = 0;
222 __uint64_t tmp;
3e57ecf6 223
3e57ecf6
OW
224 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
225 if (!tempifp) {
226 error = XFS_ERROR(ENOMEM);
ef8f7fc5 227 goto out;
3e57ecf6
OW
228 }
229
f9114eba
DC
230 /*
231 * we have to do two separate lock calls here to keep lockdep
232 * happy. If we try to get all the locks in one call, lock will
233 * report false positives when we drop the ILOCK and regain them
234 * below.
235 */
236 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
237 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1da177e4 238
1da177e4
LT
239 /* Verify that both files have the same format */
240 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
241 error = XFS_ERROR(EINVAL);
ef8f7fc5 242 goto out_unlock;
1da177e4
LT
243 }
244
245 /* Verify both files are either real-time or non-realtime */
71ddabb9 246 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
1da177e4 247 error = XFS_ERROR(EINVAL);
ef8f7fc5 248 goto out_unlock;
1da177e4
LT
249 }
250
df80c933 251 if (VN_CACHED(VFS_I(tip)) != 0) {
739bfb2a
CH
252 error = xfs_flushinval_pages(tip, 0, -1,
253 FI_REMAPF_LOCKED);
d3cf2094 254 if (error)
ef8f7fc5 255 goto out_unlock;
bd5a876a 256 }
1da177e4
LT
257
258 /* Verify O_DIRECT for ftmp */
df80c933 259 if (VN_CACHED(VFS_I(tip)) != 0) {
1da177e4 260 error = XFS_ERROR(EINVAL);
ef8f7fc5 261 goto out_unlock;
1da177e4
LT
262 }
263
264 /* Verify all data are being swapped */
d0cfb373
ES
265 if (sxp->sx_offset != 0 ||
266 sxp->sx_length != ip->i_d.di_size ||
267 sxp->sx_length != tip->i_d.di_size) {
1da177e4 268 error = XFS_ERROR(EFAULT);
ef8f7fc5 269 goto out_unlock;
1da177e4
LT
270 }
271
3a85cd96
DC
272 trace_xfs_swap_extent_before(ip, 0);
273 trace_xfs_swap_extent_before(tip, 1);
274
e09f9860
DC
275 /* check inode formats now that data is flushed */
276 error = xfs_swap_extents_check_format(ip, tip);
277 if (error) {
53487786 278 xfs_notice(mp,
e09f9860 279 "%s: inode 0x%llx format is incompatible for exchanging.",
53487786 280 __func__, ip->i_ino);
ef8f7fc5 281 goto out_unlock;
1da177e4
LT
282 }
283
284 /*
285 * Compare the current change & modify times with that
286 * passed in. If they differ, we abort this swap.
287 * This is the mechanism used to ensure the calling
288 * process that the file was not changed out from
289 * under it.
290 */
f9581b14
CH
291 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
292 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
293 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
294 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
1da177e4 295 error = XFS_ERROR(EBUSY);
ef8f7fc5 296 goto out_unlock;
1da177e4
LT
297 }
298
299 /* We need to fail if the file is memory mapped. Once we have tossed
300 * all existing pages, the page fault will have no option
301 * but to go to the filesystem for pages. By making the page fault call
67fcaa73 302 * vop_read (or write in the case of autogrow) they block on the iolock
1da177e4
LT
303 * until we have switched the extents.
304 */
df80c933 305 if (VN_MAPPED(VFS_I(ip))) {
1da177e4 306 error = XFS_ERROR(EBUSY);
ef8f7fc5 307 goto out_unlock;
1da177e4
LT
308 }
309
310 xfs_iunlock(ip, XFS_ILOCK_EXCL);
311 xfs_iunlock(tip, XFS_ILOCK_EXCL);
312
313 /*
314 * There is a race condition here since we gave up the
315 * ilock. However, the data fork will not change since
316 * we have the iolock (locked for truncation too) so we
317 * are safe. We don't really care if non-io related
318 * fields change.
319 */
320
739bfb2a 321 xfs_tosspages(ip, 0, -1, FI_REMAPF);
1da177e4
LT
322
323 tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
324 if ((error = xfs_trans_reserve(tp, 0,
325 XFS_ICHANGE_LOG_RES(mp), 0,
326 0, 0))) {
327 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
328 xfs_iunlock(tip, XFS_IOLOCK_EXCL);
329 xfs_trans_cancel(tp, 0);
ef8f7fc5 330 goto out;
1da177e4 331 }
e1cccd91 332 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1da177e4
LT
333
334 /*
335 * Count the number of extended attribute blocks
336 */
337 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
338 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
339 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
ef8f7fc5
JJS
340 if (error)
341 goto out_trans_cancel;
1da177e4
LT
342 }
343 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
344 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
345 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
346 &taforkblks);
ef8f7fc5
JJS
347 if (error)
348 goto out_trans_cancel;
1da177e4
LT
349 }
350
351 /*
352 * Swap the data forks of the inodes
353 */
354 ifp = &ip->i_df;
355 tifp = &tip->i_df;
d0cfb373
ES
356 *tempifp = *ifp; /* struct copy */
357 *ifp = *tifp; /* struct copy */
358 *tifp = *tempifp; /* struct copy */
1da177e4
LT
359
360 /*
361 * Fix the on-disk inode values
362 */
363 tmp = (__uint64_t)ip->i_d.di_nblocks;
364 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
365 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
366
367 tmp = (__uint64_t) ip->i_d.di_nextents;
368 ip->i_d.di_nextents = tip->i_d.di_nextents;
369 tip->i_d.di_nextents = tmp;
370
371 tmp = (__uint64_t) ip->i_d.di_format;
372 ip->i_d.di_format = tip->i_d.di_format;
373 tip->i_d.di_format = tmp;
374
309c8480
DC
375 /*
376 * The extents in the source inode could still contain speculative
377 * preallocation beyond EOF (e.g. the file is open but not modified
378 * while defrag is in progress). In that case, we need to copy over the
379 * number of delalloc blocks the data fork in the source inode is
380 * tracking beyond EOF so that when the fork is truncated away when the
381 * temporary inode is unlinked we don't underrun the i_delayed_blks
382 * counter on that inode.
383 */
384 ASSERT(tip->i_delayed_blks == 0);
385 tip->i_delayed_blks = ip->i_delayed_blks;
386 ip->i_delayed_blks = 0;
387
f5d8d5c4
CH
388 src_log_flags = XFS_ILOG_CORE;
389 switch (ip->i_d.di_format) {
1da177e4
LT
390 case XFS_DINODE_FMT_EXTENTS:
391 /* If the extents fit in the inode, fix the
392 * pointer. Otherwise it's already NULL or
393 * pointing to the extent.
394 */
395 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
396 ifp->if_u1.if_extents =
397 ifp->if_u2.if_inline_ext;
398 }
f5d8d5c4 399 src_log_flags |= XFS_ILOG_DEXT;
1da177e4
LT
400 break;
401 case XFS_DINODE_FMT_BTREE:
f5d8d5c4 402 src_log_flags |= XFS_ILOG_DBROOT;
1da177e4
LT
403 break;
404 }
405
f5d8d5c4
CH
406 target_log_flags = XFS_ILOG_CORE;
407 switch (tip->i_d.di_format) {
1da177e4
LT
408 case XFS_DINODE_FMT_EXTENTS:
409 /* If the extents fit in the inode, fix the
410 * pointer. Otherwise it's already NULL or
411 * pointing to the extent.
412 */
413 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
414 tifp->if_u1.if_extents =
415 tifp->if_u2.if_inline_ext;
416 }
f5d8d5c4 417 target_log_flags |= XFS_ILOG_DEXT;
1da177e4
LT
418 break;
419 case XFS_DINODE_FMT_BTREE:
f5d8d5c4 420 target_log_flags |= XFS_ILOG_DBROOT;
1da177e4
LT
421 break;
422 }
423
1da177e4 424
ddc3415a
CH
425 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
426 xfs_trans_ijoin(tp, tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1da177e4 427
f5d8d5c4
CH
428 xfs_trans_log_inode(tp, ip, src_log_flags);
429 xfs_trans_log_inode(tp, tip, target_log_flags);
1da177e4
LT
430
431 /*
432 * If this is a synchronous mount, make sure that the
433 * transaction goes to disk before returning to the user.
434 */
ef8f7fc5 435 if (mp->m_flags & XFS_MOUNT_WSYNC)
1da177e4 436 xfs_trans_set_sync(tp);
1da177e4 437
815cb216 438 error = xfs_trans_commit(tp, 0);
1da177e4 439
3a85cd96
DC
440 trace_xfs_swap_extent_after(ip, 0);
441 trace_xfs_swap_extent_after(tip, 1);
ef8f7fc5
JJS
442out:
443 kmem_free(tempifp);
1da177e4 444 return error;
ef8f7fc5 445
1f23920d
FB
446out_unlock:
447 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
448 xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
449 goto out;
450
ef8f7fc5
JJS
451out_trans_cancel:
452 xfs_trans_cancel(tp, 0);
453 goto out_unlock;
1da177e4 454}
This page took 0.683315 seconds and 5 git commands to generate.