blob: b9b8646e62db7357ae882bae00f3a74036c3da81 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_itable.h"
32#include "xfs_dfrag.h"
33#include "xfs_error.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100034#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Dave Chinner6bded0f2010-01-14 01:33:56 +000037
38static int xfs_swap_extents(
39 xfs_inode_t *ip, /* target inode */
40 xfs_inode_t *tip, /* tmp inode */
41 xfs_swapext_t *sxp);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
Dave Chinner6bded0f2010-01-14 01:33:56 +000044 * ioctl interface for swapext
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
46int
47xfs_swapext(
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060048 xfs_swapext_t *sxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110050 xfs_inode_t *ip, *tip;
Al Viro2903ff02012-08-28 12:52:22 -040051 struct fd f, tmp;
52 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 /* Pull information for the target fd */
Al Viro2903ff02012-08-28 12:52:22 -040055 f = fdget((int)sxp->sx_fdtarget);
56 if (!f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 error = XFS_ERROR(EINVAL);
Eric Sandeenac12b4e2009-01-25 20:53:00 -060058 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 }
60
Al Viro2903ff02012-08-28 12:52:22 -040061 if (!(f.file->f_mode & FMODE_WRITE) ||
62 !(f.file->f_mode & FMODE_READ) ||
63 (f.file->f_flags & O_APPEND)) {
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110064 error = XFS_ERROR(EBADF);
65 goto out_put_file;
66 }
67
Al Viro2903ff02012-08-28 12:52:22 -040068 tmp = fdget((int)sxp->sx_fdtmp);
69 if (!tmp.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 error = XFS_ERROR(EINVAL);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110071 goto out_put_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73
Al Viro2903ff02012-08-28 12:52:22 -040074 if (!(tmp.file->f_mode & FMODE_WRITE) ||
75 !(tmp.file->f_mode & FMODE_READ) ||
76 (tmp.file->f_flags & O_APPEND)) {
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110077 error = XFS_ERROR(EBADF);
Dave Chinner6bded0f2010-01-14 01:33:56 +000078 goto out_put_tmp_file;
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110079 }
80
Al Viro2903ff02012-08-28 12:52:22 -040081 if (IS_SWAPFILE(f.file->f_path.dentry->d_inode) ||
82 IS_SWAPFILE(tmp.file->f_path.dentry->d_inode)) {
Christoph Hellwig7c8f7af2009-02-12 19:56:00 +010083 error = XFS_ERROR(EINVAL);
Dave Chinner6bded0f2010-01-14 01:33:56 +000084 goto out_put_tmp_file;
Christoph Hellwig7c8f7af2009-02-12 19:56:00 +010085 }
86
Al Viro2903ff02012-08-28 12:52:22 -040087 ip = XFS_I(f.file->f_path.dentry->d_inode);
88 tip = XFS_I(tmp.file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 if (ip->i_mount != tip->i_mount) {
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110091 error = XFS_ERROR(EINVAL);
Dave Chinner6bded0f2010-01-14 01:33:56 +000092 goto out_put_tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
95 if (ip->i_ino == tip->i_ino) {
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110096 error = XFS_ERROR(EINVAL);
Dave Chinner6bded0f2010-01-14 01:33:56 +000097 goto out_put_tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
99
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100100 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
101 error = XFS_ERROR(EIO);
Dave Chinner6bded0f2010-01-14 01:33:56 +0000102 goto out_put_tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000105 error = xfs_swap_extents(ip, tip, sxp);
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000106
Dave Chinner6bded0f2010-01-14 01:33:56 +0000107 out_put_tmp_file:
Al Viro2903ff02012-08-28 12:52:22 -0400108 fdput(tmp);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100109 out_put_file:
Al Viro2903ff02012-08-28 12:52:22 -0400110 fdput(f);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100111 out:
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000112 return error;
113}
114
Dave Chinnere09f9862010-01-14 01:33:54 +0000115/*
116 * We need to check that the format of the data fork in the temporary inode is
117 * valid for the target inode before doing the swap. This is not a problem with
118 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
119 * data fork depending on the space the attribute fork is taking so we can get
120 * invalid formats on the target inode.
121 *
122 * E.g. target has space for 7 extents in extent format, temp inode only has
123 * space for 6. If we defragment down to 7 extents, then the tmp format is a
124 * btree, but when swapped it needs to be in extent format. Hence we can't just
125 * blindly swap data forks on attr2 filesystems.
126 *
127 * Note that we check the swap in both directions so that we don't end up with
128 * a corrupt temporary inode, either.
129 *
130 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
131 * inode will prevent this situation from occurring, so all we do here is
132 * reject and log the attempt. basically we are putting the responsibility on
133 * userspace to get this right.
134 */
135static int
136xfs_swap_extents_check_format(
137 xfs_inode_t *ip, /* target inode */
138 xfs_inode_t *tip) /* tmp inode */
139{
140
141 /* Should never get a local format */
142 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
143 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
144 return EINVAL;
145
146 /*
147 * if the target inode has less extents that then temporary inode then
148 * why did userspace call us?
149 */
150 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
151 return EINVAL;
152
153 /*
154 * if the target inode is in extent form and the temp inode is in btree
155 * form then we will end up with the target inode in the wrong format
156 * as we already know there are less extents in the temp inode.
157 */
158 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
159 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
160 return EINVAL;
161
162 /* Check temp in extent form to max in target */
163 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000164 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
165 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinnere09f9862010-01-14 01:33:54 +0000166 return EINVAL;
167
168 /* Check target in extent form to max in temp */
169 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000170 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
171 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinnere09f9862010-01-14 01:33:54 +0000172 return EINVAL;
173
Dave Chinnerdd77ef92010-04-20 17:00:37 +1000174 /*
175 * If we are in a btree format, check that the temp root block will fit
176 * in the target and that it has enough extents to be in btree format
177 * in the target.
178 *
179 * Note that we have to be careful to allow btree->extent conversions
180 * (a common defrag case) which will occur when the temp inode is in
181 * extent format...
182 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000183 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
184 if (XFS_IFORK_BOFF(ip) &&
185 tip->i_df.if_broot_bytes > XFS_IFORK_BOFF(ip))
186 return EINVAL;
187 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
188 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
189 return EINVAL;
190 }
Dave Chinnere09f9862010-01-14 01:33:54 +0000191
Dave Chinnerdd77ef92010-04-20 17:00:37 +1000192 /* Reciprocal target->temp btree format checks */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000193 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
194 if (XFS_IFORK_BOFF(tip) &&
195 ip->i_df.if_broot_bytes > XFS_IFORK_BOFF(tip))
196 return EINVAL;
197
198 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
199 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
200 return EINVAL;
201 }
Dave Chinnere09f9862010-01-14 01:33:54 +0000202
203 return 0;
204}
205
Dave Chinner6bded0f2010-01-14 01:33:56 +0000206static int
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000207xfs_swap_extents(
Dave Chinnere09f9862010-01-14 01:33:54 +0000208 xfs_inode_t *ip, /* target inode */
209 xfs_inode_t *tip, /* tmp inode */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000210 xfs_swapext_t *sxp)
211{
David Sterba45c51b92011-04-13 22:03:28 +0000212 xfs_mount_t *mp = ip->i_mount;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000213 xfs_trans_t *tp;
214 xfs_bstat_t *sbp = &sxp->sx_stat;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000215 xfs_ifork_t *tempifp, *ifp, *tifp;
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000216 int src_log_flags, target_log_flags;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000217 int error = 0;
218 int aforkblks = 0;
219 int taforkblks = 0;
220 __uint64_t tmp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000221
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000222 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
223 if (!tempifp) {
224 error = XFS_ERROR(ENOMEM);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100225 goto out;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000226 }
227
David Chinnerf9114eb2008-09-17 16:51:21 +1000228 /*
229 * we have to do two separate lock calls here to keep lockdep
230 * happy. If we try to get all the locks in one call, lock will
231 * report false positives when we drop the ILOCK and regain them
232 * below.
233 */
234 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
235 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* Verify that both files have the same format */
238 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
239 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100240 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 /* Verify both files are either real-time or non-realtime */
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100244 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100246 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000249 if (VN_CACHED(VFS_I(tip)) != 0) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000250 error = xfs_flushinval_pages(tip, 0, -1,
251 FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000252 if (error)
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100253 goto out_unlock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +1000254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /* Verify O_DIRECT for ftmp */
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000257 if (VN_CACHED(VFS_I(tip)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100259 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261
262 /* Verify all data are being swapped */
Eric Sandeend0cfb372005-11-02 10:29:04 +1100263 if (sxp->sx_offset != 0 ||
264 sxp->sx_length != ip->i_d.di_size ||
265 sxp->sx_length != tip->i_d.di_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 error = XFS_ERROR(EFAULT);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100267 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
Dave Chinner3a85cd92010-01-14 01:33:55 +0000270 trace_xfs_swap_extent_before(ip, 0);
271 trace_xfs_swap_extent_before(tip, 1);
272
Dave Chinnere09f9862010-01-14 01:33:54 +0000273 /* check inode formats now that data is flushed */
274 error = xfs_swap_extents_check_format(ip, tip);
275 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100276 xfs_notice(mp,
Dave Chinnere09f9862010-01-14 01:33:54 +0000277 "%s: inode 0x%llx format is incompatible for exchanging.",
Dave Chinner53487782011-03-07 10:05:35 +1100278 __func__, ip->i_ino);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100279 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 /*
283 * Compare the current change & modify times with that
284 * passed in. If they differ, we abort this swap.
285 * This is the mechanism used to ensure the calling
286 * process that the file was not changed out from
287 * under it.
288 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000289 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
290 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
291 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
292 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 error = XFS_ERROR(EBUSY);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100294 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
297 /* We need to fail if the file is memory mapped. Once we have tossed
298 * all existing pages, the page fault will have no option
299 * but to go to the filesystem for pages. By making the page fault call
Nathan Scott67fcaa72006-06-09 17:00:52 +1000300 * vop_read (or write in the case of autogrow) they block on the iolock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * until we have switched the extents.
302 */
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000303 if (VN_MAPPED(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 error = XFS_ERROR(EBUSY);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100305 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
308 xfs_iunlock(ip, XFS_ILOCK_EXCL);
309 xfs_iunlock(tip, XFS_ILOCK_EXCL);
310
311 /*
312 * There is a race condition here since we gave up the
313 * ilock. However, the data fork will not change since
314 * we have the iolock (locked for truncation too) so we
315 * are safe. We don't really care if non-io related
316 * fields change.
317 */
318
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000319 xfs_tosspages(ip, 0, -1, FI_REMAPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
322 if ((error = xfs_trans_reserve(tp, 0,
323 XFS_ICHANGE_LOG_RES(mp), 0,
324 0, 0))) {
325 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
326 xfs_iunlock(tip, XFS_IOLOCK_EXCL);
327 xfs_trans_cancel(tp, 0);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100328 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
Christoph Hellwige1cccd92008-08-13 16:18:07 +1000330 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /*
333 * Count the number of extended attribute blocks
334 */
335 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
336 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
337 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100338 if (error)
339 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
342 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
343 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
344 &taforkblks);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100345 if (error)
346 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348
349 /*
350 * Swap the data forks of the inodes
351 */
352 ifp = &ip->i_df;
353 tifp = &tip->i_df;
Eric Sandeend0cfb372005-11-02 10:29:04 +1100354 *tempifp = *ifp; /* struct copy */
355 *ifp = *tifp; /* struct copy */
356 *tifp = *tempifp; /* struct copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /*
359 * Fix the on-disk inode values
360 */
361 tmp = (__uint64_t)ip->i_d.di_nblocks;
362 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
363 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
364
365 tmp = (__uint64_t) ip->i_d.di_nextents;
366 ip->i_d.di_nextents = tip->i_d.di_nextents;
367 tip->i_d.di_nextents = tmp;
368
369 tmp = (__uint64_t) ip->i_d.di_format;
370 ip->i_d.di_format = tip->i_d.di_format;
371 tip->i_d.di_format = tmp;
372
Dave Chinner309c8482010-11-30 15:16:02 +1100373 /*
374 * The extents in the source inode could still contain speculative
375 * preallocation beyond EOF (e.g. the file is open but not modified
376 * while defrag is in progress). In that case, we need to copy over the
377 * number of delalloc blocks the data fork in the source inode is
378 * tracking beyond EOF so that when the fork is truncated away when the
379 * temporary inode is unlinked we don't underrun the i_delayed_blks
380 * counter on that inode.
381 */
382 ASSERT(tip->i_delayed_blks == 0);
383 tip->i_delayed_blks = ip->i_delayed_blks;
384 ip->i_delayed_blks = 0;
385
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000386 src_log_flags = XFS_ILOG_CORE;
387 switch (ip->i_d.di_format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 case XFS_DINODE_FMT_EXTENTS:
389 /* If the extents fit in the inode, fix the
390 * pointer. Otherwise it's already NULL or
391 * pointing to the extent.
392 */
393 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
394 ifp->if_u1.if_extents =
395 ifp->if_u2.if_inline_ext;
396 }
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000397 src_log_flags |= XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 break;
399 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000400 src_log_flags |= XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 break;
402 }
403
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000404 target_log_flags = XFS_ILOG_CORE;
405 switch (tip->i_d.di_format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 case XFS_DINODE_FMT_EXTENTS:
407 /* If the extents fit in the inode, fix the
408 * pointer. Otherwise it's already NULL or
409 * pointing to the extent.
410 */
411 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
412 tifp->if_u1.if_extents =
413 tifp->if_u2.if_inline_ext;
414 }
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000415 target_log_flags |= XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break;
417 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000418 target_log_flags |= XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 break;
420 }
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Christoph Hellwigddc34152011-09-19 15:00:54 +0000423 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
424 xfs_trans_ijoin(tp, tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000426 xfs_trans_log_inode(tp, ip, src_log_flags);
427 xfs_trans_log_inode(tp, tip, target_log_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /*
430 * If this is a synchronous mount, make sure that the
431 * transaction goes to disk before returning to the user.
432 */
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100433 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Christoph Hellwig815cb212011-09-26 09:14:34 +0000436 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dave Chinner3a85cd92010-01-14 01:33:55 +0000438 trace_xfs_swap_extent_after(ip, 0);
439 trace_xfs_swap_extent_after(tip, 1);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100440out:
441 kmem_free(tempifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return error;
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100443
Felix Blyakher1f239202009-05-07 19:49:45 -0500444out_unlock:
445 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
446 xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
447 goto out;
448
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100449out_trans_cancel:
450 xfs_trans_cancel(tp, 0);
451 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}