2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
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
7 * published by the Free Software Foundation.
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.
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
20 #include "xfs_types.h"
22 #include "xfs_trans.h"
25 #include "xfs_mount.h"
26 #include "xfs_bmap_btree.h"
27 #include "xfs_alloc_btree.h"
28 #include "xfs_ialloc_btree.h"
29 #include "xfs_btree.h"
30 #include "xfs_dinode.h"
31 #include "xfs_inode.h"
32 #include "xfs_inode_item.h"
34 #include "xfs_itable.h"
35 #include "xfs_dfrag.h"
36 #include "xfs_error.h"
37 #include "xfs_vnodeops.h"
38 #include "xfs_trace.h"
41 static int xfs_swap_extents(
42 xfs_inode_t
*ip
, /* target inode */
43 xfs_inode_t
*tip
, /* tmp inode */
47 * ioctl interface for swapext
53 xfs_inode_t
*ip
, *tip
;
57 /* Pull information for the target fd */
58 f
= fdget((int)sxp
->sx_fdtarget
);
60 error
= XFS_ERROR(EINVAL
);
64 if (!(f
.file
->f_mode
& FMODE_WRITE
) ||
65 !(f
.file
->f_mode
& FMODE_READ
) ||
66 (f
.file
->f_flags
& O_APPEND
)) {
67 error
= XFS_ERROR(EBADF
);
71 tmp
= fdget((int)sxp
->sx_fdtmp
);
73 error
= XFS_ERROR(EINVAL
);
77 if (!(tmp
.file
->f_mode
& FMODE_WRITE
) ||
78 !(tmp
.file
->f_mode
& FMODE_READ
) ||
79 (tmp
.file
->f_flags
& O_APPEND
)) {
80 error
= XFS_ERROR(EBADF
);
81 goto out_put_tmp_file
;
84 if (IS_SWAPFILE(file_inode(f
.file
)) ||
85 IS_SWAPFILE(file_inode(tmp
.file
))) {
86 error
= XFS_ERROR(EINVAL
);
87 goto out_put_tmp_file
;
90 ip
= XFS_I(file_inode(f
.file
));
91 tip
= XFS_I(file_inode(tmp
.file
));
93 if (ip
->i_mount
!= tip
->i_mount
) {
94 error
= XFS_ERROR(EINVAL
);
95 goto out_put_tmp_file
;
98 if (ip
->i_ino
== tip
->i_ino
) {
99 error
= XFS_ERROR(EINVAL
);
100 goto out_put_tmp_file
;
103 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
)) {
104 error
= XFS_ERROR(EIO
);
105 goto out_put_tmp_file
;
108 error
= xfs_swap_extents(ip
, tip
, sxp
);
119 * We need to check that the format of the data fork in the temporary inode is
120 * valid for the target inode before doing the swap. This is not a problem with
121 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
122 * data fork depending on the space the attribute fork is taking so we can get
123 * invalid formats on the target inode.
125 * E.g. target has space for 7 extents in extent format, temp inode only has
126 * space for 6. If we defragment down to 7 extents, then the tmp format is a
127 * btree, but when swapped it needs to be in extent format. Hence we can't just
128 * blindly swap data forks on attr2 filesystems.
130 * Note that we check the swap in both directions so that we don't end up with
131 * a corrupt temporary inode, either.
133 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
134 * inode will prevent this situation from occurring, so all we do here is
135 * reject and log the attempt. basically we are putting the responsibility on
136 * userspace to get this right.
139 xfs_swap_extents_check_format(
140 xfs_inode_t
*ip
, /* target inode */
141 xfs_inode_t
*tip
) /* tmp inode */
144 /* Should never get a local format */
145 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
||
146 tip
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
150 * if the target inode has less extents that then temporary inode then
151 * why did userspace call us?
153 if (ip
->i_d
.di_nextents
< tip
->i_d
.di_nextents
)
157 * if the target inode is in extent form and the temp inode is in btree
158 * form then we will end up with the target inode in the wrong format
159 * as we already know there are less extents in the temp inode.
161 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
162 tip
->i_d
.di_format
== XFS_DINODE_FMT_BTREE
)
165 /* Check temp in extent form to max in target */
166 if (tip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
167 XFS_IFORK_NEXTENTS(tip
, XFS_DATA_FORK
) >
168 XFS_IFORK_MAXEXT(ip
, XFS_DATA_FORK
))
171 /* Check target in extent form to max in temp */
172 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
173 XFS_IFORK_NEXTENTS(ip
, XFS_DATA_FORK
) >
174 XFS_IFORK_MAXEXT(tip
, XFS_DATA_FORK
))
178 * If we are in a btree format, check that the temp root block will fit
179 * in the target and that it has enough extents to be in btree format
182 * Note that we have to be careful to allow btree->extent conversions
183 * (a common defrag case) which will occur when the temp inode is in
186 if (tip
->i_d
.di_format
== XFS_DINODE_FMT_BTREE
) {
187 if (XFS_IFORK_BOFF(ip
) &&
188 XFS_BMAP_BMDR_SPACE(tip
->i_df
.if_broot
) > XFS_IFORK_BOFF(ip
))
190 if (XFS_IFORK_NEXTENTS(tip
, XFS_DATA_FORK
) <=
191 XFS_IFORK_MAXEXT(ip
, XFS_DATA_FORK
))
195 /* Reciprocal target->temp btree format checks */
196 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_BTREE
) {
197 if (XFS_IFORK_BOFF(tip
) &&
198 XFS_BMAP_BMDR_SPACE(ip
->i_df
.if_broot
) > XFS_IFORK_BOFF(tip
))
200 if (XFS_IFORK_NEXTENTS(ip
, XFS_DATA_FORK
) <=
201 XFS_IFORK_MAXEXT(tip
, XFS_DATA_FORK
))
210 xfs_inode_t
*ip
, /* target inode */
211 xfs_inode_t
*tip
, /* tmp inode */
214 xfs_mount_t
*mp
= ip
->i_mount
;
216 xfs_bstat_t
*sbp
= &sxp
->sx_stat
;
217 xfs_ifork_t
*tempifp
, *ifp
, *tifp
;
218 int src_log_flags
, target_log_flags
;
225 * We have no way of updating owner information in the BMBT blocks for
226 * each inode on CRC enabled filesystems, so to avoid corrupting the
227 * this metadata we simply don't allow extent swaps to occur.
229 if (xfs_sb_version_hascrc(&mp
->m_sb
))
230 return XFS_ERROR(EINVAL
);
232 tempifp
= kmem_alloc(sizeof(xfs_ifork_t
), KM_MAYFAIL
);
234 error
= XFS_ERROR(ENOMEM
);
239 * we have to do two separate lock calls here to keep lockdep
240 * happy. If we try to get all the locks in one call, lock will
241 * report false positives when we drop the ILOCK and regain them
244 xfs_lock_two_inodes(ip
, tip
, XFS_IOLOCK_EXCL
);
245 xfs_lock_two_inodes(ip
, tip
, XFS_ILOCK_EXCL
);
247 /* Verify that both files have the same format */
248 if ((ip
->i_d
.di_mode
& S_IFMT
) != (tip
->i_d
.di_mode
& S_IFMT
)) {
249 error
= XFS_ERROR(EINVAL
);
253 /* Verify both files are either real-time or non-realtime */
254 if (XFS_IS_REALTIME_INODE(ip
) != XFS_IS_REALTIME_INODE(tip
)) {
255 error
= XFS_ERROR(EINVAL
);
259 error
= -filemap_write_and_wait(VFS_I(tip
)->i_mapping
);
262 truncate_pagecache_range(VFS_I(tip
), 0, -1);
264 /* Verify O_DIRECT for ftmp */
265 if (VN_CACHED(VFS_I(tip
)) != 0) {
266 error
= XFS_ERROR(EINVAL
);
270 /* Verify all data are being swapped */
271 if (sxp
->sx_offset
!= 0 ||
272 sxp
->sx_length
!= ip
->i_d
.di_size
||
273 sxp
->sx_length
!= tip
->i_d
.di_size
) {
274 error
= XFS_ERROR(EFAULT
);
278 trace_xfs_swap_extent_before(ip
, 0);
279 trace_xfs_swap_extent_before(tip
, 1);
281 /* check inode formats now that data is flushed */
282 error
= xfs_swap_extents_check_format(ip
, tip
);
285 "%s: inode 0x%llx format is incompatible for exchanging.",
286 __func__
, ip
->i_ino
);
291 * Compare the current change & modify times with that
292 * passed in. If they differ, we abort this swap.
293 * This is the mechanism used to ensure the calling
294 * process that the file was not changed out from
297 if ((sbp
->bs_ctime
.tv_sec
!= VFS_I(ip
)->i_ctime
.tv_sec
) ||
298 (sbp
->bs_ctime
.tv_nsec
!= VFS_I(ip
)->i_ctime
.tv_nsec
) ||
299 (sbp
->bs_mtime
.tv_sec
!= VFS_I(ip
)->i_mtime
.tv_sec
) ||
300 (sbp
->bs_mtime
.tv_nsec
!= VFS_I(ip
)->i_mtime
.tv_nsec
)) {
301 error
= XFS_ERROR(EBUSY
);
305 /* We need to fail if the file is memory mapped. Once we have tossed
306 * all existing pages, the page fault will have no option
307 * but to go to the filesystem for pages. By making the page fault call
308 * vop_read (or write in the case of autogrow) they block on the iolock
309 * until we have switched the extents.
311 if (VN_MAPPED(VFS_I(ip
))) {
312 error
= XFS_ERROR(EBUSY
);
316 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
317 xfs_iunlock(tip
, XFS_ILOCK_EXCL
);
320 * There is a race condition here since we gave up the
321 * ilock. However, the data fork will not change since
322 * we have the iolock (locked for truncation too) so we
323 * are safe. We don't really care if non-io related
326 truncate_pagecache_range(VFS_I(ip
), 0, -1);
328 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SWAPEXT
);
329 if ((error
= xfs_trans_reserve(tp
, 0,
330 XFS_ICHANGE_LOG_RES(mp
), 0,
332 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
333 xfs_iunlock(tip
, XFS_IOLOCK_EXCL
);
334 xfs_trans_cancel(tp
, 0);
337 xfs_lock_two_inodes(ip
, tip
, XFS_ILOCK_EXCL
);
340 * Count the number of extended attribute blocks
342 if ( ((XFS_IFORK_Q(ip
) != 0) && (ip
->i_d
.di_anextents
> 0)) &&
343 (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)) {
344 error
= xfs_bmap_count_blocks(tp
, ip
, XFS_ATTR_FORK
, &aforkblks
);
346 goto out_trans_cancel
;
348 if ( ((XFS_IFORK_Q(tip
) != 0) && (tip
->i_d
.di_anextents
> 0)) &&
349 (tip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)) {
350 error
= xfs_bmap_count_blocks(tp
, tip
, XFS_ATTR_FORK
,
353 goto out_trans_cancel
;
357 * Swap the data forks of the inodes
361 *tempifp
= *ifp
; /* struct copy */
362 *ifp
= *tifp
; /* struct copy */
363 *tifp
= *tempifp
; /* struct copy */
366 * Fix the on-disk inode values
368 tmp
= (__uint64_t
)ip
->i_d
.di_nblocks
;
369 ip
->i_d
.di_nblocks
= tip
->i_d
.di_nblocks
- taforkblks
+ aforkblks
;
370 tip
->i_d
.di_nblocks
= tmp
+ taforkblks
- aforkblks
;
372 tmp
= (__uint64_t
) ip
->i_d
.di_nextents
;
373 ip
->i_d
.di_nextents
= tip
->i_d
.di_nextents
;
374 tip
->i_d
.di_nextents
= tmp
;
376 tmp
= (__uint64_t
) ip
->i_d
.di_format
;
377 ip
->i_d
.di_format
= tip
->i_d
.di_format
;
378 tip
->i_d
.di_format
= tmp
;
381 * The extents in the source inode could still contain speculative
382 * preallocation beyond EOF (e.g. the file is open but not modified
383 * while defrag is in progress). In that case, we need to copy over the
384 * number of delalloc blocks the data fork in the source inode is
385 * tracking beyond EOF so that when the fork is truncated away when the
386 * temporary inode is unlinked we don't underrun the i_delayed_blks
387 * counter on that inode.
389 ASSERT(tip
->i_delayed_blks
== 0);
390 tip
->i_delayed_blks
= ip
->i_delayed_blks
;
391 ip
->i_delayed_blks
= 0;
393 src_log_flags
= XFS_ILOG_CORE
;
394 switch (ip
->i_d
.di_format
) {
395 case XFS_DINODE_FMT_EXTENTS
:
396 /* If the extents fit in the inode, fix the
397 * pointer. Otherwise it's already NULL or
398 * pointing to the extent.
400 if (ip
->i_d
.di_nextents
<= XFS_INLINE_EXTS
) {
401 ifp
->if_u1
.if_extents
=
402 ifp
->if_u2
.if_inline_ext
;
404 src_log_flags
|= XFS_ILOG_DEXT
;
406 case XFS_DINODE_FMT_BTREE
:
407 src_log_flags
|= XFS_ILOG_DBROOT
;
411 target_log_flags
= XFS_ILOG_CORE
;
412 switch (tip
->i_d
.di_format
) {
413 case XFS_DINODE_FMT_EXTENTS
:
414 /* If the extents fit in the inode, fix the
415 * pointer. Otherwise it's already NULL or
416 * pointing to the extent.
418 if (tip
->i_d
.di_nextents
<= XFS_INLINE_EXTS
) {
419 tifp
->if_u1
.if_extents
=
420 tifp
->if_u2
.if_inline_ext
;
422 target_log_flags
|= XFS_ILOG_DEXT
;
424 case XFS_DINODE_FMT_BTREE
:
425 target_log_flags
|= XFS_ILOG_DBROOT
;
430 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
431 xfs_trans_ijoin(tp
, tip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
433 xfs_trans_log_inode(tp
, ip
, src_log_flags
);
434 xfs_trans_log_inode(tp
, tip
, target_log_flags
);
437 * If this is a synchronous mount, make sure that the
438 * transaction goes to disk before returning to the user.
440 if (mp
->m_flags
& XFS_MOUNT_WSYNC
)
441 xfs_trans_set_sync(tp
);
443 error
= xfs_trans_commit(tp
, 0);
445 trace_xfs_swap_extent_after(ip
, 0);
446 trace_xfs_swap_extent_after(tip
, 1);
452 xfs_iunlock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
453 xfs_iunlock(tip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
457 xfs_trans_cancel(tp
, 0);