blob: 7f159d2a429a97e8a71e0fd57298ec499519c064 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_bmap.h"
Nathan Scotta844f452005-11-02 14:38:42 +110039#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_ialloc.h"
41#include "xfs_itable.h"
42#include "xfs_dfrag.h"
43#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_rw.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100045#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Dave Chinner6bded0f2010-01-14 01:33:56 +000048
49static int xfs_swap_extents(
50 xfs_inode_t *ip, /* target inode */
51 xfs_inode_t *tip, /* tmp inode */
52 xfs_swapext_t *sxp);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/*
Dave Chinner6bded0f2010-01-14 01:33:56 +000055 * ioctl interface for swapext
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 */
57int
58xfs_swapext(
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060059 xfs_swapext_t *sxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110061 xfs_inode_t *ip, *tip;
Dave Chinner6bded0f2010-01-14 01:33:56 +000062 struct file *file, *tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 /* Pull information for the target fd */
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110066 file = fget((int)sxp->sx_fdtarget);
67 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 error = XFS_ERROR(EINVAL);
Eric Sandeenac12b4e2009-01-25 20:53:00 -060069 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71
Dan Rosenberg18171762010-06-24 12:07:47 +100072 if (!(file->f_mode & FMODE_WRITE) ||
73 !(file->f_mode & FMODE_READ) ||
74 (file->f_flags & O_APPEND)) {
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110075 error = XFS_ERROR(EBADF);
76 goto out_put_file;
77 }
78
Dave Chinner6bded0f2010-01-14 01:33:56 +000079 tmp_file = fget((int)sxp->sx_fdtmp);
80 if (!tmp_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 error = XFS_ERROR(EINVAL);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110082 goto out_put_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
Dave Chinner6bded0f2010-01-14 01:33:56 +000085 if (!(tmp_file->f_mode & FMODE_WRITE) ||
Dan Rosenberg18171762010-06-24 12:07:47 +100086 !(tmp_file->f_mode & FMODE_READ) ||
Dave Chinner6bded0f2010-01-14 01:33:56 +000087 (tmp_file->f_flags & O_APPEND)) {
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110088 error = XFS_ERROR(EBADF);
Dave Chinner6bded0f2010-01-14 01:33:56 +000089 goto out_put_tmp_file;
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110090 }
91
Christoph Hellwig7c8f7af2009-02-12 19:56:00 +010092 if (IS_SWAPFILE(file->f_path.dentry->d_inode) ||
Dave Chinner6bded0f2010-01-14 01:33:56 +000093 IS_SWAPFILE(tmp_file->f_path.dentry->d_inode)) {
Christoph Hellwig7c8f7af2009-02-12 19:56:00 +010094 error = XFS_ERROR(EINVAL);
Dave Chinner6bded0f2010-01-14 01:33:56 +000095 goto out_put_tmp_file;
Christoph Hellwig7c8f7af2009-02-12 19:56:00 +010096 }
97
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110098 ip = XFS_I(file->f_path.dentry->d_inode);
Dave Chinner6bded0f2010-01-14 01:33:56 +000099 tip = XFS_I(tmp_file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 if (ip->i_mount != tip->i_mount) {
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100102 error = XFS_ERROR(EINVAL);
Dave Chinner6bded0f2010-01-14 01:33:56 +0000103 goto out_put_tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 if (ip->i_ino == tip->i_ino) {
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100107 error = XFS_ERROR(EINVAL);
Dave Chinner6bded0f2010-01-14 01:33:56 +0000108 goto out_put_tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100111 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
112 error = XFS_ERROR(EIO);
Dave Chinner6bded0f2010-01-14 01:33:56 +0000113 goto out_put_tmp_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000116 error = xfs_swap_extents(ip, tip, sxp);
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000117
Dave Chinner6bded0f2010-01-14 01:33:56 +0000118 out_put_tmp_file:
119 fput(tmp_file);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100120 out_put_file:
121 fput(file);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100122 out:
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000123 return error;
124}
125
Dave Chinnere09f9862010-01-14 01:33:54 +0000126/*
127 * We need to check that the format of the data fork in the temporary inode is
128 * valid for the target inode before doing the swap. This is not a problem with
129 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
130 * data fork depending on the space the attribute fork is taking so we can get
131 * invalid formats on the target inode.
132 *
133 * E.g. target has space for 7 extents in extent format, temp inode only has
134 * space for 6. If we defragment down to 7 extents, then the tmp format is a
135 * btree, but when swapped it needs to be in extent format. Hence we can't just
136 * blindly swap data forks on attr2 filesystems.
137 *
138 * Note that we check the swap in both directions so that we don't end up with
139 * a corrupt temporary inode, either.
140 *
141 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
142 * inode will prevent this situation from occurring, so all we do here is
143 * reject and log the attempt. basically we are putting the responsibility on
144 * userspace to get this right.
145 */
146static int
147xfs_swap_extents_check_format(
148 xfs_inode_t *ip, /* target inode */
149 xfs_inode_t *tip) /* tmp inode */
150{
151
152 /* Should never get a local format */
153 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
154 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
155 return EINVAL;
156
157 /*
158 * if the target inode has less extents that then temporary inode then
159 * why did userspace call us?
160 */
161 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
162 return EINVAL;
163
164 /*
165 * if the target inode is in extent form and the temp inode is in btree
166 * form then we will end up with the target inode in the wrong format
167 * as we already know there are less extents in the temp inode.
168 */
169 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
170 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
171 return EINVAL;
172
173 /* Check temp in extent form to max in target */
174 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
175 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) > ip->i_df.if_ext_max)
176 return EINVAL;
177
178 /* Check target in extent form to max in temp */
179 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
180 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) > tip->i_df.if_ext_max)
181 return EINVAL;
182
Dave Chinnerdd77ef92010-04-20 17:00:37 +1000183 /*
184 * If we are in a btree format, check that the temp root block will fit
185 * in the target and that it has enough extents to be in btree format
186 * in the target.
187 *
188 * Note that we have to be careful to allow btree->extent conversions
189 * (a common defrag case) which will occur when the temp inode is in
190 * extent format...
191 */
Dave Chinnere09f9862010-01-14 01:33:54 +0000192 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
Dave Chinnerdd77ef92010-04-20 17:00:37 +1000193 ((XFS_IFORK_BOFF(ip) &&
194 tip->i_df.if_broot_bytes > XFS_IFORK_BOFF(ip)) ||
195 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <= ip->i_df.if_ext_max))
Dave Chinnere09f9862010-01-14 01:33:54 +0000196 return EINVAL;
197
Dave Chinnerdd77ef92010-04-20 17:00:37 +1000198 /* Reciprocal target->temp btree format checks */
Dave Chinnere09f9862010-01-14 01:33:54 +0000199 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
Dave Chinnerdd77ef92010-04-20 17:00:37 +1000200 ((XFS_IFORK_BOFF(tip) &&
201 ip->i_df.if_broot_bytes > XFS_IFORK_BOFF(tip)) ||
202 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <= tip->i_df.if_ext_max))
Dave Chinnere09f9862010-01-14 01:33:54 +0000203 return EINVAL;
204
205 return 0;
206}
207
Dave Chinner6bded0f2010-01-14 01:33:56 +0000208static int
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000209xfs_swap_extents(
Dave Chinnere09f9862010-01-14 01:33:54 +0000210 xfs_inode_t *ip, /* target inode */
211 xfs_inode_t *tip, /* tmp inode */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000212 xfs_swapext_t *sxp)
213{
214 xfs_mount_t *mp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000215 xfs_trans_t *tp;
216 xfs_bstat_t *sbp = &sxp->sx_stat;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000217 xfs_ifork_t *tempifp, *ifp, *tifp;
218 int ilf_fields, tilf_fields;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000219 int error = 0;
220 int aforkblks = 0;
221 int taforkblks = 0;
222 __uint64_t tmp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000223
224 mp = ip->i_mount;
225
226 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
227 if (!tempifp) {
228 error = XFS_ERROR(ENOMEM);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100229 goto out;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000230 }
231
232 sbp = &sxp->sx_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
David Chinnerf9114eb2008-09-17 16:51:21 +1000234 /*
235 * we have to do two separate lock calls here to keep lockdep
236 * happy. If we try to get all the locks in one call, lock will
237 * report false positives when we drop the ILOCK and regain them
238 * below.
239 */
240 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
241 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* Verify that both files have the same format */
244 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
245 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
249 /* Verify both files are either real-time or non-realtime */
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100250 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100252 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000255 if (VN_CACHED(VFS_I(tip)) != 0) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000256 error = xfs_flushinval_pages(tip, 0, -1,
257 FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000258 if (error)
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100259 goto out_unlock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +1000260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /* Verify O_DIRECT for ftmp */
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000263 if (VN_CACHED(VFS_I(tip)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100265 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
268 /* Verify all data are being swapped */
Eric Sandeend0cfb372005-11-02 10:29:04 +1100269 if (sxp->sx_offset != 0 ||
270 sxp->sx_length != ip->i_d.di_size ||
271 sxp->sx_length != tip->i_d.di_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 error = XFS_ERROR(EFAULT);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100273 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
Dave Chinner3a85cd92010-01-14 01:33:55 +0000276 trace_xfs_swap_extent_before(ip, 0);
277 trace_xfs_swap_extent_before(tip, 1);
278
Dave Chinnere09f9862010-01-14 01:33:54 +0000279 /* check inode formats now that data is flushed */
280 error = xfs_swap_extents_check_format(ip, tip);
281 if (error) {
282 xfs_fs_cmn_err(CE_NOTE, mp,
283 "%s: inode 0x%llx format is incompatible for exchanging.",
284 __FILE__, ip->i_ino);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100285 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
288 /*
289 * Compare the current change & modify times with that
290 * passed in. If they differ, we abort this swap.
291 * This is the mechanism used to ensure the calling
292 * process that the file was not changed out from
293 * under it.
294 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000295 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
296 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
297 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
298 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 error = XFS_ERROR(EBUSY);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100300 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
303 /* We need to fail if the file is memory mapped. Once we have tossed
304 * all existing pages, the page fault will have no option
305 * but to go to the filesystem for pages. By making the page fault call
Nathan Scott67fcaa72006-06-09 17:00:52 +1000306 * vop_read (or write in the case of autogrow) they block on the iolock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * until we have switched the extents.
308 */
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000309 if (VN_MAPPED(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 error = XFS_ERROR(EBUSY);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100311 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 xfs_iunlock(ip, XFS_ILOCK_EXCL);
315 xfs_iunlock(tip, XFS_ILOCK_EXCL);
316
317 /*
318 * There is a race condition here since we gave up the
319 * ilock. However, the data fork will not change since
320 * we have the iolock (locked for truncation too) so we
321 * are safe. We don't really care if non-io related
322 * fields change.
323 */
324
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000325 xfs_tosspages(ip, 0, -1, FI_REMAPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
328 if ((error = xfs_trans_reserve(tp, 0,
329 XFS_ICHANGE_LOG_RES(mp), 0,
330 0, 0))) {
331 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
332 xfs_iunlock(tip, XFS_IOLOCK_EXCL);
333 xfs_trans_cancel(tp, 0);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Christoph Hellwige1cccd92008-08-13 16:18:07 +1000336 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /*
339 * Count the number of extended attribute blocks
340 */
341 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
342 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
343 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100344 if (error)
345 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
348 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
349 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
350 &taforkblks);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100351 if (error)
352 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354
355 /*
356 * Swap the data forks of the inodes
357 */
358 ifp = &ip->i_df;
359 tifp = &tip->i_df;
Eric Sandeend0cfb372005-11-02 10:29:04 +1100360 *tempifp = *ifp; /* struct copy */
361 *ifp = *tifp; /* struct copy */
362 *tifp = *tempifp; /* struct copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /*
Dave Chinnere09f9862010-01-14 01:33:54 +0000365 * Fix the in-memory data fork values that are dependent on the fork
366 * offset in the inode. We can't assume they remain the same as attr2
367 * has dynamic fork offsets.
368 */
369 ifp->if_ext_max = XFS_IFORK_SIZE(ip, XFS_DATA_FORK) /
370 (uint)sizeof(xfs_bmbt_rec_t);
371 tifp->if_ext_max = XFS_IFORK_SIZE(tip, XFS_DATA_FORK) /
372 (uint)sizeof(xfs_bmbt_rec_t);
373
374 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * Fix the on-disk inode values
376 */
377 tmp = (__uint64_t)ip->i_d.di_nblocks;
378 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
379 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
380
381 tmp = (__uint64_t) ip->i_d.di_nextents;
382 ip->i_d.di_nextents = tip->i_d.di_nextents;
383 tip->i_d.di_nextents = tmp;
384
385 tmp = (__uint64_t) ip->i_d.di_format;
386 ip->i_d.di_format = tip->i_d.di_format;
387 tip->i_d.di_format = tmp;
388
389 ilf_fields = XFS_ILOG_CORE;
390
391 switch(ip->i_d.di_format) {
392 case XFS_DINODE_FMT_EXTENTS:
393 /* If the extents fit in the inode, fix the
394 * pointer. Otherwise it's already NULL or
395 * pointing to the extent.
396 */
397 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
398 ifp->if_u1.if_extents =
399 ifp->if_u2.if_inline_ext;
400 }
401 ilf_fields |= XFS_ILOG_DEXT;
402 break;
403 case XFS_DINODE_FMT_BTREE:
404 ilf_fields |= XFS_ILOG_DBROOT;
405 break;
406 }
407
408 tilf_fields = XFS_ILOG_CORE;
409
410 switch(tip->i_d.di_format) {
411 case XFS_DINODE_FMT_EXTENTS:
412 /* If the extents fit in the inode, fix the
413 * pointer. Otherwise it's already NULL or
414 * pointing to the extent.
415 */
416 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
417 tifp->if_u1.if_extents =
418 tifp->if_u2.if_inline_ext;
419 }
420 tilf_fields |= XFS_ILOG_DEXT;
421 break;
422 case XFS_DINODE_FMT_BTREE:
423 tilf_fields |= XFS_ILOG_DBROOT;
424 break;
425 }
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Christoph Hellwig0b1f91772008-08-13 16:13:09 +1000428 IHOLD(ip);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100429 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Christoph Hellwig0b1f91772008-08-13 16:13:09 +1000430
431 IHOLD(tip);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100432 xfs_trans_ijoin(tp, tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 xfs_trans_log_inode(tp, ip, ilf_fields);
435 xfs_trans_log_inode(tp, tip, tilf_fields);
436
437 /*
438 * If this is a synchronous mount, make sure that the
439 * transaction goes to disk before returning to the user.
440 */
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100441 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000444 error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Dave Chinner3a85cd92010-01-14 01:33:55 +0000446 trace_xfs_swap_extent_after(ip, 0);
447 trace_xfs_swap_extent_after(tip, 1);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100448out:
449 kmem_free(tempifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return error;
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100451
Felix Blyakher1f239202009-05-07 19:49:45 -0500452out_unlock:
453 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
454 xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
455 goto out;
456
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100457out_trans_cancel:
458 xfs_trans_cancel(tp, 0);
459 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}