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