]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/xfs/xfs_bmap_util.c
xfs: split xfs_free_file_space in manageable pieces
[mirror_ubuntu-artful-kernel.git] / fs / xfs / xfs_bmap_util.c
CommitLineData
68988114
DC
1/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
c24b5dfa 3 * Copyright (c) 2012 Red Hat, Inc.
68988114
DC
4 * All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include "xfs.h"
20#include "xfs_fs.h"
70a9883c 21#include "xfs_shared.h"
239880ef
DC
22#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
68988114 25#include "xfs_bit.h"
68988114 26#include "xfs_mount.h"
57062787 27#include "xfs_da_format.h"
68988114
DC
28#include "xfs_inode.h"
29#include "xfs_btree.h"
239880ef 30#include "xfs_trans.h"
68988114
DC
31#include "xfs_extfree_item.h"
32#include "xfs_alloc.h"
33#include "xfs_bmap.h"
34#include "xfs_bmap_util.h"
a4fbe6ab 35#include "xfs_bmap_btree.h"
68988114
DC
36#include "xfs_rtalloc.h"
37#include "xfs_error.h"
38#include "xfs_quota.h"
39#include "xfs_trans_space.h"
40#include "xfs_trace.h"
c24b5dfa 41#include "xfs_icache.h"
239880ef 42#include "xfs_log.h"
68988114
DC
43
44/* Kernel only BMAP related definitions and functions */
45
46/*
47 * Convert the given file system block to a disk block. We have to treat it
48 * differently based on whether the file is a real time file or not, because the
49 * bmap code does.
50 */
51xfs_daddr_t
52xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb)
53{
54 return (XFS_IS_REALTIME_INODE(ip) ? \
55 (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \
56 XFS_FSB_TO_DADDR((ip)->i_mount, (fsb)));
57}
58
3fbbbea3
DC
59/*
60 * Routine to zero an extent on disk allocated to the specific inode.
61 *
62 * The VFS functions take a linearised filesystem block offset, so we have to
63 * convert the sparse xfs fsb to the right format first.
64 * VFS types are real funky, too.
65 */
66int
67xfs_zero_extent(
68 struct xfs_inode *ip,
69 xfs_fsblock_t start_fsb,
70 xfs_off_t count_fsb)
71{
72 struct xfs_mount *mp = ip->i_mount;
73 xfs_daddr_t sector = xfs_fsb_to_db(ip, start_fsb);
74 sector_t block = XFS_BB_TO_FSBT(mp, sector);
3fbbbea3 75
3dc29161
MW
76 return blkdev_issue_zeroout(xfs_find_bdev_for_inode(VFS_I(ip)),
77 block << (mp->m_super->s_blocksize_bits - 9),
78 count_fsb << (mp->m_super->s_blocksize_bits - 9),
79 GFP_NOFS, true);
3fbbbea3
DC
80}
81
68988114
DC
82/*
83 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
84 * caller. Frees all the extents that need freeing, which must be done
85 * last due to locking considerations. We never free any extents in
86 * the first transaction.
87 *
f6106efa
ES
88 * If an inode *ip is provided, rejoin it to the transaction if
89 * the transaction was committed.
68988114
DC
90 */
91int /* error */
92xfs_bmap_finish(
8d99fe92
BF
93 struct xfs_trans **tp, /* transaction pointer addr */
94 struct xfs_bmap_free *flist, /* i/o: list extents to free */
f6106efa 95 struct xfs_inode *ip)
68988114 96{
8d99fe92
BF
97 struct xfs_efd_log_item *efd; /* extent free data */
98 struct xfs_efi_log_item *efi; /* extent free intention */
99 int error; /* error return value */
f6106efa 100 int committed;/* xact committed or not */
8d99fe92
BF
101 struct xfs_bmap_free_item *free; /* free extent item */
102 struct xfs_bmap_free_item *next; /* next item on free list */
68988114
DC
103
104 ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES);
f6106efa 105 if (flist->xbf_count == 0)
68988114 106 return 0;
f6106efa 107
2e6db6c4 108 efi = xfs_trans_get_efi(*tp, flist->xbf_count);
68988114 109 for (free = flist->xbf_first; free; free = free->xbfi_next)
2e6db6c4 110 xfs_trans_log_efi_extent(*tp, efi, free->xbfi_startblock,
68988114 111 free->xbfi_blockcount);
3d3c8b52 112
f6106efa 113 error = __xfs_trans_roll(tp, ip, &committed);
8d99fe92
BF
114 if (error) {
115 /*
116 * If the transaction was committed, drop the EFD reference
117 * since we're bailing out of here. The other reference is
118 * dropped when the EFI hits the AIL.
119 *
120 * If the transaction was not committed, the EFI is freed by the
121 * EFI item unlock handler on abort. Also, we have a new
122 * transaction so we should return committed=1 even though we're
123 * returning an error.
124 */
f6106efa 125 if (committed) {
8d99fe92
BF
126 xfs_efi_release(efi);
127 xfs_force_shutdown((*tp)->t_mountp,
128 (error == -EFSCORRUPTED) ?
129 SHUTDOWN_CORRUPT_INCORE :
130 SHUTDOWN_META_IO_ERROR);
8d99fe92 131 }
68988114 132 return error;
8d99fe92 133 }
68988114 134
6bc43af3
BF
135 /*
136 * Get an EFD and free each extent in the list, logging to the EFD in
137 * the process. The remaining bmap free list is cleaned up by the caller
138 * on error.
139 */
2e6db6c4 140 efd = xfs_trans_get_efd(*tp, efi, flist->xbf_count);
68988114
DC
141 for (free = flist->xbf_first; free != NULL; free = next) {
142 next = free->xbfi_next;
8d99fe92 143
6bc43af3
BF
144 error = xfs_trans_free_extent(*tp, efd, free->xbfi_startblock,
145 free->xbfi_blockcount);
8d99fe92
BF
146 if (error)
147 return error;
148
68988114
DC
149 xfs_bmap_del_free(flist, NULL, free);
150 }
8d99fe92 151
68988114
DC
152 return 0;
153}
154
155int
156xfs_bmap_rtalloc(
157 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
158{
159 xfs_alloctype_t atype = 0; /* type for allocation routines */
160 int error; /* error return value */
161 xfs_mount_t *mp; /* mount point structure */
162 xfs_extlen_t prod = 0; /* product factor for allocators */
163 xfs_extlen_t ralen = 0; /* realtime allocation length */
164 xfs_extlen_t align; /* minimum allocation alignment */
165 xfs_rtblock_t rtb;
166
167 mp = ap->ip->i_mount;
168 align = xfs_get_extsz_hint(ap->ip);
169 prod = align / mp->m_sb.sb_rextsize;
170 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
171 align, 1, ap->eof, 0,
172 ap->conv, &ap->offset, &ap->length);
173 if (error)
174 return error;
175 ASSERT(ap->length);
176 ASSERT(ap->length % mp->m_sb.sb_rextsize == 0);
177
178 /*
179 * If the offset & length are not perfectly aligned
180 * then kill prod, it will just get us in trouble.
181 */
182 if (do_mod(ap->offset, align) || ap->length % align)
183 prod = 1;
184 /*
185 * Set ralen to be the actual requested length in rtextents.
186 */
187 ralen = ap->length / mp->m_sb.sb_rextsize;
188 /*
189 * If the old value was close enough to MAXEXTLEN that
190 * we rounded up to it, cut it back so it's valid again.
191 * Note that if it's a really large request (bigger than
192 * MAXEXTLEN), we don't hear about that number, and can't
193 * adjust the starting point to match it.
194 */
195 if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN)
196 ralen = MAXEXTLEN / mp->m_sb.sb_rextsize;
197
198 /*
4b680afb 199 * Lock out modifications to both the RT bitmap and summary inodes
68988114
DC
200 */
201 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
202 xfs_trans_ijoin(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL);
4b680afb
DC
203 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL);
204 xfs_trans_ijoin(ap->tp, mp->m_rsumip, XFS_ILOCK_EXCL);
68988114
DC
205
206 /*
207 * If it's an allocation to an empty file at offset 0,
208 * pick an extent that will space things out in the rt area.
209 */
210 if (ap->eof && ap->offset == 0) {
211 xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */
212
213 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx);
214 if (error)
215 return error;
216 ap->blkno = rtx * mp->m_sb.sb_rextsize;
217 } else {
218 ap->blkno = 0;
219 }
220
221 xfs_bmap_adjacent(ap);
222
223 /*
224 * Realtime allocation, done through xfs_rtallocate_extent.
225 */
226 atype = ap->blkno == 0 ? XFS_ALLOCTYPE_ANY_AG : XFS_ALLOCTYPE_NEAR_BNO;
227 do_div(ap->blkno, mp->m_sb.sb_rextsize);
228 rtb = ap->blkno;
229 ap->length = ralen;
230 if ((error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1, ap->length,
231 &ralen, atype, ap->wasdel, prod, &rtb)))
232 return error;
233 if (rtb == NULLFSBLOCK && prod > 1 &&
234 (error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1,
235 ap->length, &ralen, atype,
236 ap->wasdel, 1, &rtb)))
237 return error;
238 ap->blkno = rtb;
239 if (ap->blkno != NULLFSBLOCK) {
240 ap->blkno *= mp->m_sb.sb_rextsize;
241 ralen *= mp->m_sb.sb_rextsize;
242 ap->length = ralen;
243 ap->ip->i_d.di_nblocks += ralen;
244 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
245 if (ap->wasdel)
246 ap->ip->i_delayed_blks -= ralen;
247 /*
248 * Adjust the disk quota also. This was reserved
249 * earlier.
250 */
251 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
252 ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT :
253 XFS_TRANS_DQ_RTBCOUNT, (long) ralen);
3fbbbea3
DC
254
255 /* Zero the extent if we were asked to do so */
256 if (ap->userdata & XFS_ALLOC_USERDATA_ZERO) {
257 error = xfs_zero_extent(ap->ip, ap->blkno, ap->length);
258 if (error)
259 return error;
260 }
68988114
DC
261 } else {
262 ap->length = 0;
263 }
264 return 0;
265}
266
68988114
DC
267/*
268 * Check if the endoff is outside the last extent. If so the caller will grow
269 * the allocation to a stripe unit boundary. All offsets are considered outside
270 * the end of file for an empty fork, so 1 is returned in *eof in that case.
271 */
272int
273xfs_bmap_eof(
274 struct xfs_inode *ip,
275 xfs_fileoff_t endoff,
276 int whichfork,
277 int *eof)
278{
279 struct xfs_bmbt_irec rec;
280 int error;
281
282 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof);
283 if (error || *eof)
284 return error;
285
286 *eof = endoff >= rec.br_startoff + rec.br_blockcount;
287 return 0;
288}
289
290/*
291 * Extent tree block counting routines.
292 */
293
294/*
295 * Count leaf blocks given a range of extent records.
296 */
297STATIC void
298xfs_bmap_count_leaves(
299 xfs_ifork_t *ifp,
300 xfs_extnum_t idx,
301 int numrecs,
302 int *count)
303{
304 int b;
305
306 for (b = 0; b < numrecs; b++) {
307 xfs_bmbt_rec_host_t *frp = xfs_iext_get_ext(ifp, idx + b);
308 *count += xfs_bmbt_get_blockcount(frp);
309 }
310}
311
312/*
313 * Count leaf blocks given a range of extent records originally
314 * in btree format.
315 */
316STATIC void
317xfs_bmap_disk_count_leaves(
318 struct xfs_mount *mp,
319 struct xfs_btree_block *block,
320 int numrecs,
321 int *count)
322{
323 int b;
324 xfs_bmbt_rec_t *frp;
325
326 for (b = 1; b <= numrecs; b++) {
327 frp = XFS_BMBT_REC_ADDR(mp, block, b);
328 *count += xfs_bmbt_disk_get_blockcount(frp);
329 }
330}
331
332/*
333 * Recursively walks each level of a btree
8be11e92 334 * to count total fsblocks in use.
68988114
DC
335 */
336STATIC int /* error */
337xfs_bmap_count_tree(
338 xfs_mount_t *mp, /* file system mount point */
339 xfs_trans_t *tp, /* transaction pointer */
340 xfs_ifork_t *ifp, /* inode fork pointer */
341 xfs_fsblock_t blockno, /* file system block number */
342 int levelin, /* level in btree */
343 int *count) /* Count of blocks */
344{
345 int error;
346 xfs_buf_t *bp, *nbp;
347 int level = levelin;
348 __be64 *pp;
349 xfs_fsblock_t bno = blockno;
350 xfs_fsblock_t nextbno;
351 struct xfs_btree_block *block, *nextblock;
352 int numrecs;
353
354 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF,
355 &xfs_bmbt_buf_ops);
356 if (error)
357 return error;
358 *count += 1;
359 block = XFS_BUF_TO_BLOCK(bp);
360
361 if (--level) {
362 /* Not at node above leaves, count this level of nodes */
363 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
364 while (nextbno != NULLFSBLOCK) {
365 error = xfs_btree_read_bufl(mp, tp, nextbno, 0, &nbp,
366 XFS_BMAP_BTREE_REF,
367 &xfs_bmbt_buf_ops);
368 if (error)
369 return error;
370 *count += 1;
371 nextblock = XFS_BUF_TO_BLOCK(nbp);
372 nextbno = be64_to_cpu(nextblock->bb_u.l.bb_rightsib);
373 xfs_trans_brelse(tp, nbp);
374 }
375
376 /* Dive to the next level */
377 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
378 bno = be64_to_cpu(*pp);
379 if (unlikely((error =
380 xfs_bmap_count_tree(mp, tp, ifp, bno, level, count)) < 0)) {
381 xfs_trans_brelse(tp, bp);
382 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
383 XFS_ERRLEVEL_LOW, mp);
2451337d 384 return -EFSCORRUPTED;
68988114
DC
385 }
386 xfs_trans_brelse(tp, bp);
387 } else {
388 /* count all level 1 nodes and their leaves */
389 for (;;) {
390 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
391 numrecs = be16_to_cpu(block->bb_numrecs);
392 xfs_bmap_disk_count_leaves(mp, block, numrecs, count);
393 xfs_trans_brelse(tp, bp);
394 if (nextbno == NULLFSBLOCK)
395 break;
396 bno = nextbno;
397 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
398 XFS_BMAP_BTREE_REF,
399 &xfs_bmbt_buf_ops);
400 if (error)
401 return error;
402 *count += 1;
403 block = XFS_BUF_TO_BLOCK(bp);
404 }
405 }
406 return 0;
407}
408
409/*
410 * Count fsblocks of the given fork.
411 */
412int /* error */
413xfs_bmap_count_blocks(
414 xfs_trans_t *tp, /* transaction pointer */
415 xfs_inode_t *ip, /* incore inode */
416 int whichfork, /* data or attr fork */
417 int *count) /* out: count of blocks */
418{
419 struct xfs_btree_block *block; /* current btree block */
420 xfs_fsblock_t bno; /* block # of "block" */
421 xfs_ifork_t *ifp; /* fork structure */
422 int level; /* btree level, for checking */
423 xfs_mount_t *mp; /* file system mount structure */
424 __be64 *pp; /* pointer to block address */
425
426 bno = NULLFSBLOCK;
427 mp = ip->i_mount;
428 ifp = XFS_IFORK_PTR(ip, whichfork);
429 if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
430 xfs_bmap_count_leaves(ifp, 0,
431 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t),
432 count);
433 return 0;
434 }
435
436 /*
437 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
438 */
439 block = ifp->if_broot;
440 level = be16_to_cpu(block->bb_level);
441 ASSERT(level > 0);
442 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
443 bno = be64_to_cpu(*pp);
d5cf09ba 444 ASSERT(bno != NULLFSBLOCK);
68988114
DC
445 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
446 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
447
448 if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
449 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
450 mp);
2451337d 451 return -EFSCORRUPTED;
68988114
DC
452 }
453
454 return 0;
455}
456
457/*
458 * returns 1 for success, 0 if we failed to map the extent.
459 */
460STATIC int
461xfs_getbmapx_fix_eof_hole(
462 xfs_inode_t *ip, /* xfs incore inode pointer */
463 struct getbmapx *out, /* output structure */
464 int prealloced, /* this is a file with
465 * preallocated data space */
466 __int64_t end, /* last block requested */
467 xfs_fsblock_t startblock)
468{
469 __int64_t fixlen;
470 xfs_mount_t *mp; /* file system mount point */
471 xfs_ifork_t *ifp; /* inode fork pointer */
472 xfs_extnum_t lastx; /* last extent pointer */
473 xfs_fileoff_t fileblock;
474
475 if (startblock == HOLESTARTBLOCK) {
476 mp = ip->i_mount;
477 out->bmv_block = -1;
478 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, XFS_ISIZE(ip)));
479 fixlen -= out->bmv_offset;
480 if (prealloced && out->bmv_offset + out->bmv_length == end) {
481 /* Came to hole at EOF. Trim it. */
482 if (fixlen <= 0)
483 return 0;
484 out->bmv_length = fixlen;
485 }
486 } else {
487 if (startblock == DELAYSTARTBLOCK)
488 out->bmv_block = -2;
489 else
490 out->bmv_block = xfs_fsb_to_db(ip, startblock);
491 fileblock = XFS_BB_TO_FSB(ip->i_mount, out->bmv_offset);
492 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
493 if (xfs_iext_bno_to_ext(ifp, fileblock, &lastx) &&
494 (lastx == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))-1))
495 out->bmv_oflags |= BMV_OF_LAST;
496 }
497
498 return 1;
499}
500
501/*
502 * Get inode's extents as described in bmv, and format for output.
503 * Calls formatter to fill the user's buffer until all extents
504 * are mapped, until the passed-in bmv->bmv_count slots have
505 * been filled, or until the formatter short-circuits the loop,
506 * if it is tracking filled-in extents on its own.
507 */
508int /* error code */
509xfs_getbmap(
510 xfs_inode_t *ip,
511 struct getbmapx *bmv, /* user bmap structure */
512 xfs_bmap_format_t formatter, /* format to user */
513 void *arg) /* formatter arg */
514{
515 __int64_t bmvend; /* last block requested */
516 int error = 0; /* return value */
517 __int64_t fixlen; /* length for -1 case */
518 int i; /* extent number */
519 int lock; /* lock state */
520 xfs_bmbt_irec_t *map; /* buffer for user's data */
521 xfs_mount_t *mp; /* file system mount point */
522 int nex; /* # of user extents can do */
523 int nexleft; /* # of user extents left */
524 int subnex; /* # of bmapi's can do */
525 int nmap; /* number of map entries */
526 struct getbmapx *out; /* output structure */
527 int whichfork; /* data or attr fork */
528 int prealloced; /* this is a file with
529 * preallocated data space */
530 int iflags; /* interface flags */
531 int bmapi_flags; /* flags for xfs_bmapi */
532 int cur_ext = 0;
533
534 mp = ip->i_mount;
535 iflags = bmv->bmv_iflags;
536 whichfork = iflags & BMV_IF_ATTRFORK ? XFS_ATTR_FORK : XFS_DATA_FORK;
537
538 if (whichfork == XFS_ATTR_FORK) {
539 if (XFS_IFORK_Q(ip)) {
540 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS &&
541 ip->i_d.di_aformat != XFS_DINODE_FMT_BTREE &&
542 ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)
2451337d 543 return -EINVAL;
68988114
DC
544 } else if (unlikely(
545 ip->i_d.di_aformat != 0 &&
546 ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS)) {
547 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW,
548 ip->i_mount);
2451337d 549 return -EFSCORRUPTED;
68988114
DC
550 }
551
552 prealloced = 0;
553 fixlen = 1LL << 32;
554 } else {
555 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
556 ip->i_d.di_format != XFS_DINODE_FMT_BTREE &&
557 ip->i_d.di_format != XFS_DINODE_FMT_LOCAL)
2451337d 558 return -EINVAL;
68988114
DC
559
560 if (xfs_get_extsz_hint(ip) ||
561 ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)){
562 prealloced = 1;
563 fixlen = mp->m_super->s_maxbytes;
564 } else {
565 prealloced = 0;
566 fixlen = XFS_ISIZE(ip);
567 }
568 }
569
570 if (bmv->bmv_length == -1) {
571 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, fixlen));
572 bmv->bmv_length =
573 max_t(__int64_t, fixlen - bmv->bmv_offset, 0);
574 } else if (bmv->bmv_length == 0) {
575 bmv->bmv_entries = 0;
576 return 0;
577 } else if (bmv->bmv_length < 0) {
2451337d 578 return -EINVAL;
68988114
DC
579 }
580
581 nex = bmv->bmv_count - 1;
582 if (nex <= 0)
2451337d 583 return -EINVAL;
68988114
DC
584 bmvend = bmv->bmv_offset + bmv->bmv_length;
585
586
587 if (bmv->bmv_count > ULONG_MAX / sizeof(struct getbmapx))
2451337d 588 return -ENOMEM;
fdd3ccee
DC
589 out = kmem_zalloc_large(bmv->bmv_count * sizeof(struct getbmapx), 0);
590 if (!out)
2451337d 591 return -ENOMEM;
68988114
DC
592
593 xfs_ilock(ip, XFS_IOLOCK_SHARED);
efa70be1
CH
594 if (whichfork == XFS_DATA_FORK) {
595 if (!(iflags & BMV_IF_DELALLOC) &&
596 (ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_d.di_size)) {
2451337d 597 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
68988114
DC
598 if (error)
599 goto out_unlock_iolock;
efa70be1
CH
600
601 /*
602 * Even after flushing the inode, there can still be
603 * delalloc blocks on the inode beyond EOF due to
604 * speculative preallocation. These are not removed
605 * until the release function is called or the inode
606 * is inactivated. Hence we cannot assert here that
607 * ip->i_delayed_blks == 0.
608 */
68988114 609 }
68988114 610
efa70be1
CH
611 lock = xfs_ilock_data_map_shared(ip);
612 } else {
613 lock = xfs_ilock_attr_map_shared(ip);
614 }
68988114
DC
615
616 /*
617 * Don't let nex be bigger than the number of extents
618 * we can have assuming alternating holes and real extents.
619 */
620 if (nex > XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1)
621 nex = XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1;
622
623 bmapi_flags = xfs_bmapi_aflag(whichfork);
624 if (!(iflags & BMV_IF_PREALLOC))
625 bmapi_flags |= XFS_BMAPI_IGSTATE;
626
627 /*
628 * Allocate enough space to handle "subnex" maps at a time.
629 */
2451337d 630 error = -ENOMEM;
68988114
DC
631 subnex = 16;
632 map = kmem_alloc(subnex * sizeof(*map), KM_MAYFAIL | KM_NOFS);
633 if (!map)
634 goto out_unlock_ilock;
635
636 bmv->bmv_entries = 0;
637
638 if (XFS_IFORK_NEXTENTS(ip, whichfork) == 0 &&
639 (whichfork == XFS_ATTR_FORK || !(iflags & BMV_IF_DELALLOC))) {
640 error = 0;
641 goto out_free_map;
642 }
643
644 nexleft = nex;
645
646 do {
647 nmap = (nexleft > subnex) ? subnex : nexleft;
648 error = xfs_bmapi_read(ip, XFS_BB_TO_FSBT(mp, bmv->bmv_offset),
649 XFS_BB_TO_FSB(mp, bmv->bmv_length),
650 map, &nmap, bmapi_flags);
651 if (error)
652 goto out_free_map;
653 ASSERT(nmap <= subnex);
654
655 for (i = 0; i < nmap && nexleft && bmv->bmv_length; i++) {
656 out[cur_ext].bmv_oflags = 0;
657 if (map[i].br_state == XFS_EXT_UNWRITTEN)
658 out[cur_ext].bmv_oflags |= BMV_OF_PREALLOC;
659 else if (map[i].br_startblock == DELAYSTARTBLOCK)
660 out[cur_ext].bmv_oflags |= BMV_OF_DELALLOC;
661 out[cur_ext].bmv_offset =
662 XFS_FSB_TO_BB(mp, map[i].br_startoff);
663 out[cur_ext].bmv_length =
664 XFS_FSB_TO_BB(mp, map[i].br_blockcount);
665 out[cur_ext].bmv_unused1 = 0;
666 out[cur_ext].bmv_unused2 = 0;
667
668 /*
669 * delayed allocation extents that start beyond EOF can
670 * occur due to speculative EOF allocation when the
671 * delalloc extent is larger than the largest freespace
672 * extent at conversion time. These extents cannot be
673 * converted by data writeback, so can exist here even
674 * if we are not supposed to be finding delalloc
675 * extents.
676 */
677 if (map[i].br_startblock == DELAYSTARTBLOCK &&
678 map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
679 ASSERT((iflags & BMV_IF_DELALLOC) != 0);
680
681 if (map[i].br_startblock == HOLESTARTBLOCK &&
682 whichfork == XFS_ATTR_FORK) {
683 /* came to the end of attribute fork */
684 out[cur_ext].bmv_oflags |= BMV_OF_LAST;
685 goto out_free_map;
686 }
687
688 if (!xfs_getbmapx_fix_eof_hole(ip, &out[cur_ext],
689 prealloced, bmvend,
690 map[i].br_startblock))
691 goto out_free_map;
692
693 bmv->bmv_offset =
694 out[cur_ext].bmv_offset +
695 out[cur_ext].bmv_length;
696 bmv->bmv_length =
697 max_t(__int64_t, 0, bmvend - bmv->bmv_offset);
698
699 /*
700 * In case we don't want to return the hole,
701 * don't increase cur_ext so that we can reuse
702 * it in the next loop.
703 */
704 if ((iflags & BMV_IF_NO_HOLES) &&
705 map[i].br_startblock == HOLESTARTBLOCK) {
706 memset(&out[cur_ext], 0, sizeof(out[cur_ext]));
707 continue;
708 }
709
710 nexleft--;
711 bmv->bmv_entries++;
712 cur_ext++;
713 }
714 } while (nmap && nexleft && bmv->bmv_length);
715
716 out_free_map:
717 kmem_free(map);
718 out_unlock_ilock:
01f4f327 719 xfs_iunlock(ip, lock);
68988114
DC
720 out_unlock_iolock:
721 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
722
723 for (i = 0; i < cur_ext; i++) {
724 int full = 0; /* user array is full */
725
726 /* format results & advance arg */
727 error = formatter(&arg, &out[i], &full);
728 if (error || full)
729 break;
730 }
731
fdd3ccee 732 kmem_free(out);
68988114
DC
733 return error;
734}
735
736/*
737 * dead simple method of punching delalyed allocation blocks from a range in
738 * the inode. Walks a block at a time so will be slow, but is only executed in
ad4809bf 739 * rare error cases so the overhead is not critical. This will always punch out
68988114
DC
740 * both the start and end blocks, even if the ranges only partially overlap
741 * them, so it is up to the caller to ensure that partial blocks are not
742 * passed in.
743 */
744int
745xfs_bmap_punch_delalloc_range(
746 struct xfs_inode *ip,
747 xfs_fileoff_t start_fsb,
748 xfs_fileoff_t length)
749{
750 xfs_fileoff_t remaining = length;
751 int error = 0;
752
753 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
754
755 do {
756 int done;
757 xfs_bmbt_irec_t imap;
758 int nimaps = 1;
759 xfs_fsblock_t firstblock;
760 xfs_bmap_free_t flist;
761
762 /*
763 * Map the range first and check that it is a delalloc extent
764 * before trying to unmap the range. Otherwise we will be
765 * trying to remove a real extent (which requires a
766 * transaction) or a hole, which is probably a bad idea...
767 */
768 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps,
769 XFS_BMAPI_ENTIRE);
770
771 if (error) {
772 /* something screwed, just bail */
773 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
774 xfs_alert(ip->i_mount,
775 "Failed delalloc mapping lookup ino %lld fsb %lld.",
776 ip->i_ino, start_fsb);
777 }
778 break;
779 }
780 if (!nimaps) {
781 /* nothing there */
782 goto next_block;
783 }
784 if (imap.br_startblock != DELAYSTARTBLOCK) {
785 /* been converted, ignore */
786 goto next_block;
787 }
788 WARN_ON(imap.br_blockcount == 0);
789
790 /*
791 * Note: while we initialise the firstblock/flist pair, they
792 * should never be used because blocks should never be
793 * allocated or freed for a delalloc extent and hence we need
794 * don't cancel or finish them after the xfs_bunmapi() call.
795 */
796 xfs_bmap_init(&flist, &firstblock);
797 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock,
798 &flist, &done);
799 if (error)
800 break;
801
802 ASSERT(!flist.xbf_count && !flist.xbf_first);
803next_block:
804 start_fsb++;
805 remaining--;
806 } while(remaining > 0);
807
808 return error;
809}
c24b5dfa
DC
810
811/*
812 * Test whether it is appropriate to check an inode for and free post EOF
813 * blocks. The 'force' parameter determines whether we should also consider
814 * regular files that are marked preallocated or append-only.
815 */
816bool
817xfs_can_free_eofblocks(struct xfs_inode *ip, bool force)
818{
819 /* prealloc/delalloc exists only on regular files */
c19b3b05 820 if (!S_ISREG(VFS_I(ip)->i_mode))
c24b5dfa
DC
821 return false;
822
823 /*
824 * Zero sized files with no cached pages and delalloc blocks will not
825 * have speculative prealloc/delalloc blocks to remove.
826 */
827 if (VFS_I(ip)->i_size == 0 &&
2667c6f9 828 VFS_I(ip)->i_mapping->nrpages == 0 &&
c24b5dfa
DC
829 ip->i_delayed_blks == 0)
830 return false;
831
832 /* If we haven't read in the extent list, then don't do it now. */
833 if (!(ip->i_df.if_flags & XFS_IFEXTENTS))
834 return false;
835
836 /*
837 * Do not free real preallocated or append-only files unless the file
838 * has delalloc blocks and we are forced to remove them.
839 */
840 if (ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND))
841 if (!force || ip->i_delayed_blks == 0)
842 return false;
843
844 return true;
845}
846
847/*
848 * This is called by xfs_inactive to free any blocks beyond eof
849 * when the link count isn't zero and by xfs_dm_punch_hole() when
850 * punching a hole to EOF.
851 */
852int
853xfs_free_eofblocks(
854 xfs_mount_t *mp,
855 xfs_inode_t *ip,
856 bool need_iolock)
857{
858 xfs_trans_t *tp;
859 int error;
860 xfs_fileoff_t end_fsb;
861 xfs_fileoff_t last_fsb;
862 xfs_filblks_t map_len;
863 int nimaps;
864 xfs_bmbt_irec_t imap;
865
866 /*
867 * Figure out if there are any blocks beyond the end
868 * of the file. If not, then there is nothing to do.
869 */
870 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
871 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
872 if (last_fsb <= end_fsb)
873 return 0;
874 map_len = last_fsb - end_fsb;
875
876 nimaps = 1;
877 xfs_ilock(ip, XFS_ILOCK_SHARED);
878 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
879 xfs_iunlock(ip, XFS_ILOCK_SHARED);
880
881 if (!error && (nimaps != 0) &&
882 (imap.br_startblock != HOLESTARTBLOCK ||
883 ip->i_delayed_blks)) {
884 /*
885 * Attach the dquots to the inode up front.
886 */
887 error = xfs_qm_dqattach(ip, 0);
888 if (error)
889 return error;
890
891 /*
892 * There are blocks after the end of file.
893 * Free them up now by truncating the file to
894 * its current size.
895 */
c24b5dfa 896 if (need_iolock) {
253f4911 897 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL))
2451337d 898 return -EAGAIN;
c24b5dfa
DC
899 }
900
253f4911
CH
901 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0,
902 &tp);
c24b5dfa
DC
903 if (error) {
904 ASSERT(XFS_FORCED_SHUTDOWN(mp));
c24b5dfa
DC
905 if (need_iolock)
906 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
907 return error;
908 }
909
910 xfs_ilock(ip, XFS_ILOCK_EXCL);
911 xfs_trans_ijoin(tp, ip, 0);
912
913 /*
914 * Do not update the on-disk file size. If we update the
915 * on-disk file size and then the system crashes before the
916 * contents of the file are flushed to disk then the files
917 * may be full of holes (ie NULL files bug).
918 */
919 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
920 XFS_ISIZE(ip));
921 if (error) {
922 /*
923 * If we get an error at this point we simply don't
924 * bother truncating the file.
925 */
4906e215 926 xfs_trans_cancel(tp);
c24b5dfa 927 } else {
70393313 928 error = xfs_trans_commit(tp);
c24b5dfa
DC
929 if (!error)
930 xfs_inode_clear_eofblocks_tag(ip);
931 }
932
933 xfs_iunlock(ip, XFS_ILOCK_EXCL);
934 if (need_iolock)
935 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
936 }
937 return error;
938}
939
83aee9e4 940int
c24b5dfa 941xfs_alloc_file_space(
83aee9e4 942 struct xfs_inode *ip,
c24b5dfa
DC
943 xfs_off_t offset,
944 xfs_off_t len,
5f8aca8b 945 int alloc_type)
c24b5dfa
DC
946{
947 xfs_mount_t *mp = ip->i_mount;
948 xfs_off_t count;
949 xfs_filblks_t allocated_fsb;
950 xfs_filblks_t allocatesize_fsb;
951 xfs_extlen_t extsz, temp;
952 xfs_fileoff_t startoffset_fsb;
953 xfs_fsblock_t firstfsb;
954 int nimaps;
955 int quota_flag;
956 int rt;
957 xfs_trans_t *tp;
958 xfs_bmbt_irec_t imaps[1], *imapp;
959 xfs_bmap_free_t free_list;
960 uint qblocks, resblks, resrtextents;
c24b5dfa
DC
961 int error;
962
963 trace_xfs_alloc_file_space(ip);
964
965 if (XFS_FORCED_SHUTDOWN(mp))
2451337d 966 return -EIO;
c24b5dfa
DC
967
968 error = xfs_qm_dqattach(ip, 0);
969 if (error)
970 return error;
971
972 if (len <= 0)
2451337d 973 return -EINVAL;
c24b5dfa
DC
974
975 rt = XFS_IS_REALTIME_INODE(ip);
976 extsz = xfs_get_extsz_hint(ip);
977
978 count = len;
979 imapp = &imaps[0];
980 nimaps = 1;
981 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
982 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
983
984 /*
985 * Allocate file space until done or until there is an error
986 */
987 while (allocatesize_fsb && !error) {
988 xfs_fileoff_t s, e;
989
990 /*
991 * Determine space reservations for data/realtime.
992 */
993 if (unlikely(extsz)) {
994 s = startoffset_fsb;
995 do_div(s, extsz);
996 s *= extsz;
997 e = startoffset_fsb + allocatesize_fsb;
998 if ((temp = do_mod(startoffset_fsb, extsz)))
999 e += temp;
1000 if ((temp = do_mod(e, extsz)))
1001 e += extsz - temp;
1002 } else {
1003 s = 0;
1004 e = allocatesize_fsb;
1005 }
1006
1007 /*
1008 * The transaction reservation is limited to a 32-bit block
1009 * count, hence we need to limit the number of blocks we are
1010 * trying to reserve to avoid an overflow. We can't allocate
1011 * more than @nimaps extents, and an extent is limited on disk
1012 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1013 */
1014 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
1015 if (unlikely(rt)) {
1016 resrtextents = qblocks = resblks;
1017 resrtextents /= mp->m_sb.sb_rextsize;
1018 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1019 quota_flag = XFS_QMOPT_RES_RTBLKS;
1020 } else {
1021 resrtextents = 0;
1022 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
1023 quota_flag = XFS_QMOPT_RES_REGBLKS;
1024 }
1025
1026 /*
1027 * Allocate and setup the transaction.
1028 */
253f4911
CH
1029 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1030 resrtextents, 0, &tp);
1031
c24b5dfa
DC
1032 /*
1033 * Check for running out of space
1034 */
1035 if (error) {
1036 /*
1037 * Free the transaction structure.
1038 */
2451337d 1039 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
c24b5dfa
DC
1040 break;
1041 }
1042 xfs_ilock(ip, XFS_ILOCK_EXCL);
1043 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1044 0, quota_flag);
1045 if (error)
1046 goto error1;
1047
1048 xfs_trans_ijoin(tp, ip, 0);
1049
1050 xfs_bmap_init(&free_list, &firstfsb);
1051 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1052 allocatesize_fsb, alloc_type, &firstfsb,
dbd5c8c9 1053 resblks, imapp, &nimaps, &free_list);
f6106efa 1054 if (error)
c24b5dfa 1055 goto error0;
c24b5dfa
DC
1056
1057 /*
1058 * Complete the transaction
1059 */
f6106efa
ES
1060 error = xfs_bmap_finish(&tp, &free_list, NULL);
1061 if (error)
c24b5dfa 1062 goto error0;
c24b5dfa 1063
70393313 1064 error = xfs_trans_commit(tp);
c24b5dfa 1065 xfs_iunlock(ip, XFS_ILOCK_EXCL);
f6106efa 1066 if (error)
c24b5dfa 1067 break;
c24b5dfa
DC
1068
1069 allocated_fsb = imapp->br_blockcount;
1070
1071 if (nimaps == 0) {
2451337d 1072 error = -ENOSPC;
c24b5dfa
DC
1073 break;
1074 }
1075
1076 startoffset_fsb += allocated_fsb;
1077 allocatesize_fsb -= allocated_fsb;
1078 }
1079
1080 return error;
1081
1082error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
1083 xfs_bmap_cancel(&free_list);
1084 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
1085
1086error1: /* Just cancel transaction */
4906e215 1087 xfs_trans_cancel(tp);
c24b5dfa
DC
1088 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1089 return error;
1090}
1091
1092/*
1093 * Zero file bytes between startoff and endoff inclusive.
1094 * The iolock is held exclusive and no blocks are buffered.
1095 *
1096 * This function is used by xfs_free_file_space() to zero
1097 * partial blocks when the range to free is not block aligned.
1098 * When unreserving space with boundaries that are not block
1099 * aligned we round up the start and round down the end
1100 * boundaries and then use this function to zero the parts of
1101 * the blocks that got dropped during the rounding.
1102 */
1103STATIC int
1104xfs_zero_remaining_bytes(
1105 xfs_inode_t *ip,
1106 xfs_off_t startoff,
1107 xfs_off_t endoff)
1108{
1109 xfs_bmbt_irec_t imap;
1110 xfs_fileoff_t offset_fsb;
1111 xfs_off_t lastoffset;
1112 xfs_off_t offset;
1113 xfs_buf_t *bp;
1114 xfs_mount_t *mp = ip->i_mount;
1115 int nimap;
1116 int error = 0;
1117
1118 /*
1119 * Avoid doing I/O beyond eof - it's not necessary
1120 * since nothing can read beyond eof. The space will
1121 * be zeroed when the file is extended anyway.
1122 */
1123 if (startoff >= XFS_ISIZE(ip))
1124 return 0;
1125
1126 if (endoff > XFS_ISIZE(ip))
1127 endoff = XFS_ISIZE(ip);
1128
c24b5dfa 1129 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
4f317369
CH
1130 uint lock_mode;
1131
c24b5dfa
DC
1132 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1133 nimap = 1;
4f317369
CH
1134
1135 lock_mode = xfs_ilock_data_map_shared(ip);
c24b5dfa 1136 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
4f317369
CH
1137 xfs_iunlock(ip, lock_mode);
1138
c24b5dfa
DC
1139 if (error || nimap < 1)
1140 break;
1141 ASSERT(imap.br_blockcount >= 1);
1142 ASSERT(imap.br_startoff == offset_fsb);
4f69f578
DC
1143 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1144
1145 if (imap.br_startblock == HOLESTARTBLOCK ||
1146 imap.br_state == XFS_EXT_UNWRITTEN) {
1147 /* skip the entire extent */
1148 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff +
1149 imap.br_blockcount) - 1;
1150 continue;
1151 }
1152
c24b5dfa
DC
1153 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1154 if (lastoffset > endoff)
1155 lastoffset = endoff;
4f69f578
DC
1156
1157 /* DAX can just zero the backing device directly */
1158 if (IS_DAX(VFS_I(ip))) {
1159 error = dax_zero_page_range(VFS_I(ip), offset,
1160 lastoffset - offset + 1,
1161 xfs_get_blocks_direct);
1162 if (error)
1163 return error;
c24b5dfa 1164 continue;
4f69f578 1165 }
83a0adc3 1166
8c156125
CH
1167 error = xfs_buf_read_uncached(XFS_IS_REALTIME_INODE(ip) ?
1168 mp->m_rtdev_targp : mp->m_ddev_targp,
1169 xfs_fsb_to_db(ip, imap.br_startblock),
1170 BTOBB(mp->m_sb.sb_blocksize),
1171 0, &bp, NULL);
1172 if (error)
1173 return error;
1174
c24b5dfa 1175 memset(bp->b_addr +
8c156125
CH
1176 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
1177 0, lastoffset - offset + 1);
83a0adc3 1178
8c156125
CH
1179 error = xfs_bwrite(bp);
1180 xfs_buf_relse(bp);
1181 if (error)
1182 return error;
c24b5dfa 1183 }
c24b5dfa
DC
1184 return error;
1185}
1186
bdb0d04f
CH
1187static int
1188xfs_unmap_extent(
1189 struct xfs_inode *ip,
1190 xfs_fileoff_t startoffset_fsb,
1191 xfs_filblks_t len_fsb,
1192 int *done)
1193{
1194 struct xfs_mount *mp = ip->i_mount;
1195 struct xfs_trans *tp;
1196 struct xfs_bmap_free free_list;
1197 xfs_fsblock_t firstfsb;
1198 uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1199 int error;
1200
1201 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1202 if (error) {
1203 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1204 return error;
1205 }
1206
1207 xfs_ilock(ip, XFS_ILOCK_EXCL);
1208 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, ip->i_gdquot,
1209 ip->i_pdquot, resblks, 0, XFS_QMOPT_RES_REGBLKS);
1210 if (error)
1211 goto out_trans_cancel;
1212
1213 xfs_trans_ijoin(tp, ip, 0);
1214
1215 xfs_bmap_init(&free_list, &firstfsb);
1216 error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, &firstfsb,
1217 &free_list, done);
1218 if (error)
1219 goto out_bmap_cancel;
1220
1221 error = xfs_bmap_finish(&tp, &free_list, NULL);
1222 if (error)
1223 goto out_bmap_cancel;
1224
1225 error = xfs_trans_commit(tp);
1226out_unlock:
1227 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1228 return error;
1229
1230out_bmap_cancel:
1231 xfs_bmap_cancel(&free_list);
1232out_trans_cancel:
1233 xfs_trans_cancel(tp);
1234 goto out_unlock;
1235}
1236
1237static int
1238xfs_adjust_extent_unmap_boundaries(
1239 struct xfs_inode *ip,
1240 xfs_fileoff_t *startoffset_fsb,
1241 xfs_fileoff_t *endoffset_fsb)
1242{
1243 struct xfs_mount *mp = ip->i_mount;
1244 struct xfs_bmbt_irec imap;
1245 int nimap, error;
1246 xfs_extlen_t mod = 0;
1247
1248 nimap = 1;
1249 error = xfs_bmapi_read(ip, *startoffset_fsb, 1, &imap, &nimap, 0);
1250 if (error)
1251 return error;
1252
1253 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1254 xfs_daddr_t block;
1255
1256 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1257 block = imap.br_startblock;
1258 mod = do_div(block, mp->m_sb.sb_rextsize);
1259 if (mod)
1260 *startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1261 }
1262
1263 nimap = 1;
1264 error = xfs_bmapi_read(ip, *endoffset_fsb - 1, 1, &imap, &nimap, 0);
1265 if (error)
1266 return error;
1267
1268 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1269 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1270 mod++;
1271 if (mod && mod != mp->m_sb.sb_rextsize)
1272 *endoffset_fsb -= mod;
1273 }
1274
1275 return 0;
1276}
1277
1278static int
1279xfs_flush_unmap_range(
1280 struct xfs_inode *ip,
1281 xfs_off_t offset,
1282 xfs_off_t len)
1283{
1284 struct xfs_mount *mp = ip->i_mount;
1285 struct inode *inode = VFS_I(ip);
1286 xfs_off_t rounding, start, end;
1287 int error;
1288
1289 /* wait for the completion of any pending DIOs */
1290 inode_dio_wait(inode);
1291
1292 rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_SIZE);
1293 start = round_down(offset, rounding);
1294 end = round_up(offset + len, rounding) - 1;
1295
1296 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
1297 if (error)
1298 return error;
1299 truncate_pagecache_range(inode, start, end);
1300 return 0;
1301}
1302
83aee9e4 1303int
c24b5dfa 1304xfs_free_file_space(
83aee9e4 1305 struct xfs_inode *ip,
c24b5dfa 1306 xfs_off_t offset,
5f8aca8b 1307 xfs_off_t len)
c24b5dfa 1308{
bdb0d04f 1309 struct xfs_mount *mp = ip->i_mount;
c24b5dfa 1310 xfs_fileoff_t startoffset_fsb;
bdb0d04f
CH
1311 xfs_fileoff_t endoffset_fsb;
1312 int done, error;
c24b5dfa
DC
1313
1314 trace_xfs_free_file_space(ip);
1315
1316 error = xfs_qm_dqattach(ip, 0);
1317 if (error)
1318 return error;
1319
c24b5dfa 1320 if (len <= 0) /* if nothing being freed */
bdb0d04f 1321 return 0;
c24b5dfa 1322
bdb0d04f 1323 error = xfs_flush_unmap_range(ip, offset, len);
c24b5dfa 1324 if (error)
bdb0d04f
CH
1325 return error;
1326
1327 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
1328 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
c24b5dfa
DC
1329
1330 /*
bdb0d04f
CH
1331 * Need to zero the stuff we're not freeing, on disk. If it's a RT file
1332 * and we can't use unwritten extents then we actually need to ensure
1333 * to zero the whole extent, otherwise we just need to take of block
1334 * boundaries, and xfs_bunmapi will handle the rest.
c24b5dfa 1335 */
bdb0d04f
CH
1336 if (XFS_IS_REALTIME_INODE(ip) &&
1337 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
1338 error = xfs_adjust_extent_unmap_boundaries(ip, &startoffset_fsb,
1339 &endoffset_fsb);
c24b5dfa 1340 if (error)
bdb0d04f 1341 return error;
c24b5dfa 1342 }
bdb0d04f 1343
c24b5dfa
DC
1344 if ((done = (endoffset_fsb <= startoffset_fsb)))
1345 /*
1346 * One contiguous piece to clear
1347 */
1348 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
1349 else {
1350 /*
1351 * Some full blocks, possibly two pieces to clear
1352 */
1353 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
1354 error = xfs_zero_remaining_bytes(ip, offset,
1355 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
1356 if (!error &&
1357 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
1358 error = xfs_zero_remaining_bytes(ip,
1359 XFS_FSB_TO_B(mp, endoffset_fsb),
1360 offset + len - 1);
1361 }
1362
c24b5dfa 1363 while (!error && !done) {
bdb0d04f
CH
1364 error = xfs_unmap_extent(ip, startoffset_fsb,
1365 endoffset_fsb - startoffset_fsb, &done);
c24b5dfa
DC
1366 }
1367
c24b5dfa 1368 return error;
c24b5dfa
DC
1369}
1370
5d11fb4b
BF
1371/*
1372 * Preallocate and zero a range of a file. This mechanism has the allocation
1373 * semantics of fallocate and in addition converts data in the range to zeroes.
1374 */
865e9446 1375int
c24b5dfa
DC
1376xfs_zero_file_space(
1377 struct xfs_inode *ip,
1378 xfs_off_t offset,
5f8aca8b 1379 xfs_off_t len)
c24b5dfa
DC
1380{
1381 struct xfs_mount *mp = ip->i_mount;
5d11fb4b 1382 uint blksize;
c24b5dfa
DC
1383 int error;
1384
897b73b6
DC
1385 trace_xfs_zero_file_space(ip);
1386
5d11fb4b 1387 blksize = 1 << mp->m_sb.sb_blocklog;
c24b5dfa
DC
1388
1389 /*
5d11fb4b
BF
1390 * Punch a hole and prealloc the range. We use hole punch rather than
1391 * unwritten extent conversion for two reasons:
1392 *
1393 * 1.) Hole punch handles partial block zeroing for us.
1394 *
1395 * 2.) If prealloc returns ENOSPC, the file range is still zero-valued
1396 * by virtue of the hole punch.
c24b5dfa 1397 */
5d11fb4b
BF
1398 error = xfs_free_file_space(ip, offset, len);
1399 if (error)
1400 goto out;
c24b5dfa 1401
5d11fb4b
BF
1402 error = xfs_alloc_file_space(ip, round_down(offset, blksize),
1403 round_up(offset + len, blksize) -
1404 round_down(offset, blksize),
1405 XFS_BMAPI_PREALLOC);
5f8aca8b 1406out:
c24b5dfa
DC
1407 return error;
1408
1409}
1410
e1d8fb88 1411/*
a904b1ca
NJ
1412 * @next_fsb will keep track of the extent currently undergoing shift.
1413 * @stop_fsb will keep track of the extent at which we have to stop.
1414 * If we are shifting left, we will start with block (offset + len) and
1415 * shift each extent till last extent.
1416 * If we are shifting right, we will start with last extent inside file space
1417 * and continue until we reach the block corresponding to offset.
e1d8fb88 1418 */
72c1a739 1419static int
a904b1ca
NJ
1420xfs_shift_file_space(
1421 struct xfs_inode *ip,
1422 xfs_off_t offset,
1423 xfs_off_t len,
1424 enum shift_direction direction)
e1d8fb88
NJ
1425{
1426 int done = 0;
1427 struct xfs_mount *mp = ip->i_mount;
1428 struct xfs_trans *tp;
1429 int error;
e1d8fb88
NJ
1430 struct xfs_bmap_free free_list;
1431 xfs_fsblock_t first_block;
a904b1ca 1432 xfs_fileoff_t stop_fsb;
2c845f5a 1433 xfs_fileoff_t next_fsb;
e1d8fb88
NJ
1434 xfs_fileoff_t shift_fsb;
1435
a904b1ca 1436 ASSERT(direction == SHIFT_LEFT || direction == SHIFT_RIGHT);
e1d8fb88 1437
a904b1ca
NJ
1438 if (direction == SHIFT_LEFT) {
1439 next_fsb = XFS_B_TO_FSB(mp, offset + len);
1440 stop_fsb = XFS_B_TO_FSB(mp, VFS_I(ip)->i_size);
1441 } else {
1442 /*
1443 * If right shift, delegate the work of initialization of
1444 * next_fsb to xfs_bmap_shift_extent as it has ilock held.
1445 */
1446 next_fsb = NULLFSBLOCK;
1447 stop_fsb = XFS_B_TO_FSB(mp, offset);
1448 }
e1d8fb88 1449
e1d8fb88
NJ
1450 shift_fsb = XFS_B_TO_FSB(mp, len);
1451
f71721d0
BF
1452 /*
1453 * Trim eofblocks to avoid shifting uninitialized post-eof preallocation
1454 * into the accessible region of the file.
1455 */
41b9d726
BF
1456 if (xfs_can_free_eofblocks(ip, true)) {
1457 error = xfs_free_eofblocks(mp, ip, false);
1458 if (error)
1459 return error;
1460 }
1669a8ca 1461
f71721d0
BF
1462 /*
1463 * Writeback and invalidate cache for the remainder of the file as we're
a904b1ca 1464 * about to shift down every extent from offset to EOF.
f71721d0
BF
1465 */
1466 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
a904b1ca 1467 offset, -1);
f71721d0
BF
1468 if (error)
1469 return error;
1470 error = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
09cbfeaf 1471 offset >> PAGE_SHIFT, -1);
e1d8fb88
NJ
1472 if (error)
1473 return error;
1474
a904b1ca
NJ
1475 /*
1476 * The extent shiting code works on extent granularity. So, if
1477 * stop_fsb is not the starting block of extent, we need to split
1478 * the extent at stop_fsb.
1479 */
1480 if (direction == SHIFT_RIGHT) {
1481 error = xfs_bmap_split_extent(ip, stop_fsb);
1482 if (error)
1483 return error;
1484 }
1485
e1d8fb88 1486 while (!error && !done) {
e1d8fb88
NJ
1487 /*
1488 * We would need to reserve permanent block for transaction.
1489 * This will come into picture when after shifting extent into
1490 * hole we found that adjacent extents can be merged which
1491 * may lead to freeing of a block during record update.
1492 */
253f4911
CH
1493 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write,
1494 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp);
1495 if (error)
e1d8fb88 1496 break;
e1d8fb88
NJ
1497
1498 xfs_ilock(ip, XFS_ILOCK_EXCL);
1499 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot,
1500 ip->i_gdquot, ip->i_pdquot,
1501 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0,
1502 XFS_QMOPT_RES_REGBLKS);
1503 if (error)
d4a97a04 1504 goto out_trans_cancel;
e1d8fb88 1505
a904b1ca 1506 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
e1d8fb88
NJ
1507
1508 xfs_bmap_init(&free_list, &first_block);
1509
1510 /*
1511 * We are using the write transaction in which max 2 bmbt
1512 * updates are allowed
1513 */
a904b1ca
NJ
1514 error = xfs_bmap_shift_extents(tp, ip, &next_fsb, shift_fsb,
1515 &done, stop_fsb, &first_block, &free_list,
1516 direction, XFS_BMAP_MAX_SHIFT_EXTENTS);
e1d8fb88 1517 if (error)
d4a97a04 1518 goto out_bmap_cancel;
e1d8fb88 1519
f6106efa 1520 error = xfs_bmap_finish(&tp, &free_list, NULL);
e1d8fb88 1521 if (error)
d4a97a04 1522 goto out_bmap_cancel;
e1d8fb88 1523
70393313 1524 error = xfs_trans_commit(tp);
e1d8fb88
NJ
1525 }
1526
1527 return error;
1528
d4a97a04
BF
1529out_bmap_cancel:
1530 xfs_bmap_cancel(&free_list);
1531out_trans_cancel:
4906e215 1532 xfs_trans_cancel(tp);
e1d8fb88
NJ
1533 return error;
1534}
1535
a904b1ca
NJ
1536/*
1537 * xfs_collapse_file_space()
1538 * This routine frees disk space and shift extent for the given file.
1539 * The first thing we do is to free data blocks in the specified range
1540 * by calling xfs_free_file_space(). It would also sync dirty data
1541 * and invalidate page cache over the region on which collapse range
1542 * is working. And Shift extent records to the left to cover a hole.
1543 * RETURNS:
1544 * 0 on success
1545 * errno on error
1546 *
1547 */
1548int
1549xfs_collapse_file_space(
1550 struct xfs_inode *ip,
1551 xfs_off_t offset,
1552 xfs_off_t len)
1553{
1554 int error;
1555
1556 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1557 trace_xfs_collapse_file_space(ip);
1558
1559 error = xfs_free_file_space(ip, offset, len);
1560 if (error)
1561 return error;
1562
1563 return xfs_shift_file_space(ip, offset, len, SHIFT_LEFT);
1564}
1565
1566/*
1567 * xfs_insert_file_space()
1568 * This routine create hole space by shifting extents for the given file.
1569 * The first thing we do is to sync dirty data and invalidate page cache
1570 * over the region on which insert range is working. And split an extent
1571 * to two extents at given offset by calling xfs_bmap_split_extent.
1572 * And shift all extent records which are laying between [offset,
1573 * last allocated extent] to the right to reserve hole range.
1574 * RETURNS:
1575 * 0 on success
1576 * errno on error
1577 */
1578int
1579xfs_insert_file_space(
1580 struct xfs_inode *ip,
1581 loff_t offset,
1582 loff_t len)
1583{
1584 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1585 trace_xfs_insert_file_space(ip);
1586
1587 return xfs_shift_file_space(ip, offset, len, SHIFT_RIGHT);
1588}
1589
a133d952
DC
1590/*
1591 * We need to check that the format of the data fork in the temporary inode is
1592 * valid for the target inode before doing the swap. This is not a problem with
1593 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
1594 * data fork depending on the space the attribute fork is taking so we can get
1595 * invalid formats on the target inode.
1596 *
1597 * E.g. target has space for 7 extents in extent format, temp inode only has
1598 * space for 6. If we defragment down to 7 extents, then the tmp format is a
1599 * btree, but when swapped it needs to be in extent format. Hence we can't just
1600 * blindly swap data forks on attr2 filesystems.
1601 *
1602 * Note that we check the swap in both directions so that we don't end up with
1603 * a corrupt temporary inode, either.
1604 *
1605 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
1606 * inode will prevent this situation from occurring, so all we do here is
1607 * reject and log the attempt. basically we are putting the responsibility on
1608 * userspace to get this right.
1609 */
1610static int
1611xfs_swap_extents_check_format(
1612 xfs_inode_t *ip, /* target inode */
1613 xfs_inode_t *tip) /* tmp inode */
1614{
1615
1616 /* Should never get a local format */
1617 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
1618 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
2451337d 1619 return -EINVAL;
a133d952
DC
1620
1621 /*
1622 * if the target inode has less extents that then temporary inode then
1623 * why did userspace call us?
1624 */
1625 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
2451337d 1626 return -EINVAL;
a133d952
DC
1627
1628 /*
1629 * if the target inode is in extent form and the temp inode is in btree
1630 * form then we will end up with the target inode in the wrong format
1631 * as we already know there are less extents in the temp inode.
1632 */
1633 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1634 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
2451337d 1635 return -EINVAL;
a133d952
DC
1636
1637 /* Check temp in extent form to max in target */
1638 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1639 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
1640 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
2451337d 1641 return -EINVAL;
a133d952
DC
1642
1643 /* Check target in extent form to max in temp */
1644 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1645 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
1646 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
2451337d 1647 return -EINVAL;
a133d952
DC
1648
1649 /*
1650 * If we are in a btree format, check that the temp root block will fit
1651 * in the target and that it has enough extents to be in btree format
1652 * in the target.
1653 *
1654 * Note that we have to be careful to allow btree->extent conversions
1655 * (a common defrag case) which will occur when the temp inode is in
1656 * extent format...
1657 */
1658 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1659 if (XFS_IFORK_BOFF(ip) &&
1660 XFS_BMAP_BMDR_SPACE(tip->i_df.if_broot) > XFS_IFORK_BOFF(ip))
2451337d 1661 return -EINVAL;
a133d952
DC
1662 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
1663 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
2451337d 1664 return -EINVAL;
a133d952
DC
1665 }
1666
1667 /* Reciprocal target->temp btree format checks */
1668 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1669 if (XFS_IFORK_BOFF(tip) &&
1670 XFS_BMAP_BMDR_SPACE(ip->i_df.if_broot) > XFS_IFORK_BOFF(tip))
2451337d 1671 return -EINVAL;
a133d952
DC
1672 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
1673 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
2451337d 1674 return -EINVAL;
a133d952
DC
1675 }
1676
1677 return 0;
1678}
1679
7abbb8f9 1680static int
4ef897a2
DC
1681xfs_swap_extent_flush(
1682 struct xfs_inode *ip)
1683{
1684 int error;
1685
1686 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1687 if (error)
1688 return error;
1689 truncate_pagecache_range(VFS_I(ip), 0, -1);
1690
1691 /* Verify O_DIRECT for ftmp */
1692 if (VFS_I(ip)->i_mapping->nrpages)
1693 return -EINVAL;
4ef897a2
DC
1694 return 0;
1695}
1696
a133d952
DC
1697int
1698xfs_swap_extents(
1699 xfs_inode_t *ip, /* target inode */
1700 xfs_inode_t *tip, /* tmp inode */
1701 xfs_swapext_t *sxp)
1702{
1703 xfs_mount_t *mp = ip->i_mount;
1704 xfs_trans_t *tp;
1705 xfs_bstat_t *sbp = &sxp->sx_stat;
1706 xfs_ifork_t *tempifp, *ifp, *tifp;
1707 int src_log_flags, target_log_flags;
1708 int error = 0;
1709 int aforkblks = 0;
1710 int taforkblks = 0;
1711 __uint64_t tmp;
81217683 1712 int lock_flags;
a133d952 1713
a133d952
DC
1714 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
1715 if (!tempifp) {
2451337d 1716 error = -ENOMEM;
a133d952
DC
1717 goto out;
1718 }
1719
1720 /*
723cac48
DC
1721 * Lock the inodes against other IO, page faults and truncate to
1722 * begin with. Then we can ensure the inodes are flushed and have no
1723 * page cache safely. Once we have done this we can take the ilocks and
1724 * do the rest of the checks.
a133d952 1725 */
723cac48 1726 lock_flags = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
a133d952 1727 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
723cac48 1728 xfs_lock_two_inodes(ip, tip, XFS_MMAPLOCK_EXCL);
a133d952
DC
1729
1730 /* Verify that both files have the same format */
c19b3b05 1731 if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) {
2451337d 1732 error = -EINVAL;
a133d952
DC
1733 goto out_unlock;
1734 }
1735
1736 /* Verify both files are either real-time or non-realtime */
1737 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
2451337d 1738 error = -EINVAL;
a133d952
DC
1739 goto out_unlock;
1740 }
1741
4ef897a2
DC
1742 error = xfs_swap_extent_flush(ip);
1743 if (error)
1744 goto out_unlock;
1745 error = xfs_swap_extent_flush(tip);
a133d952
DC
1746 if (error)
1747 goto out_unlock;
a133d952 1748
253f4911
CH
1749 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
1750 if (error)
a133d952 1751 goto out_unlock;
723cac48
DC
1752
1753 /*
1754 * Lock and join the inodes to the tansaction so that transaction commit
1755 * or cancel will unlock the inodes from this point onwards.
1756 */
4ef897a2
DC
1757 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1758 lock_flags |= XFS_ILOCK_EXCL;
723cac48
DC
1759 xfs_trans_ijoin(tp, ip, lock_flags);
1760 xfs_trans_ijoin(tp, tip, lock_flags);
1761
a133d952
DC
1762
1763 /* Verify all data are being swapped */
1764 if (sxp->sx_offset != 0 ||
1765 sxp->sx_length != ip->i_d.di_size ||
1766 sxp->sx_length != tip->i_d.di_size) {
2451337d 1767 error = -EFAULT;
4ef897a2 1768 goto out_trans_cancel;
a133d952
DC
1769 }
1770
1771 trace_xfs_swap_extent_before(ip, 0);
1772 trace_xfs_swap_extent_before(tip, 1);
1773
1774 /* check inode formats now that data is flushed */
1775 error = xfs_swap_extents_check_format(ip, tip);
1776 if (error) {
1777 xfs_notice(mp,
1778 "%s: inode 0x%llx format is incompatible for exchanging.",
1779 __func__, ip->i_ino);
4ef897a2 1780 goto out_trans_cancel;
a133d952
DC
1781 }
1782
1783 /*
1784 * Compare the current change & modify times with that
1785 * passed in. If they differ, we abort this swap.
1786 * This is the mechanism used to ensure the calling
1787 * process that the file was not changed out from
1788 * under it.
1789 */
1790 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
1791 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
1792 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
1793 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
2451337d 1794 error = -EBUSY;
81217683 1795 goto out_trans_cancel;
a133d952 1796 }
a133d952
DC
1797 /*
1798 * Count the number of extended attribute blocks
1799 */
1800 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
1801 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1802 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
1803 if (error)
1804 goto out_trans_cancel;
1805 }
1806 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
1807 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1808 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
1809 &taforkblks);
1810 if (error)
1811 goto out_trans_cancel;
1812 }
1813
21b5c978
DC
1814 /*
1815 * Before we've swapped the forks, lets set the owners of the forks
1816 * appropriately. We have to do this as we are demand paging the btree
1817 * buffers, and so the validation done on read will expect the owner
1818 * field to be correctly set. Once we change the owners, we can swap the
1819 * inode forks.
1820 *
1821 * Note the trickiness in setting the log flags - we set the owner log
1822 * flag on the opposite inode (i.e. the inode we are setting the new
1823 * owner to be) because once we swap the forks and log that, log
1824 * recovery is going to see the fork as owned by the swapped inode,
1825 * not the pre-swapped inodes.
1826 */
1827 src_log_flags = XFS_ILOG_CORE;
1828 target_log_flags = XFS_ILOG_CORE;
1829 if (ip->i_d.di_version == 3 &&
1830 ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
638f4416
DC
1831 target_log_flags |= XFS_ILOG_DOWNER;
1832 error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK,
1833 tip->i_ino, NULL);
21b5c978
DC
1834 if (error)
1835 goto out_trans_cancel;
1836 }
1837
1838 if (tip->i_d.di_version == 3 &&
1839 tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
638f4416
DC
1840 src_log_flags |= XFS_ILOG_DOWNER;
1841 error = xfs_bmbt_change_owner(tp, tip, XFS_DATA_FORK,
1842 ip->i_ino, NULL);
21b5c978
DC
1843 if (error)
1844 goto out_trans_cancel;
1845 }
1846
a133d952
DC
1847 /*
1848 * Swap the data forks of the inodes
1849 */
1850 ifp = &ip->i_df;
1851 tifp = &tip->i_df;
1852 *tempifp = *ifp; /* struct copy */
1853 *ifp = *tifp; /* struct copy */
1854 *tifp = *tempifp; /* struct copy */
1855
1856 /*
1857 * Fix the on-disk inode values
1858 */
1859 tmp = (__uint64_t)ip->i_d.di_nblocks;
1860 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
1861 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
1862
1863 tmp = (__uint64_t) ip->i_d.di_nextents;
1864 ip->i_d.di_nextents = tip->i_d.di_nextents;
1865 tip->i_d.di_nextents = tmp;
1866
1867 tmp = (__uint64_t) ip->i_d.di_format;
1868 ip->i_d.di_format = tip->i_d.di_format;
1869 tip->i_d.di_format = tmp;
1870
1871 /*
1872 * The extents in the source inode could still contain speculative
1873 * preallocation beyond EOF (e.g. the file is open but not modified
1874 * while defrag is in progress). In that case, we need to copy over the
1875 * number of delalloc blocks the data fork in the source inode is
1876 * tracking beyond EOF so that when the fork is truncated away when the
1877 * temporary inode is unlinked we don't underrun the i_delayed_blks
1878 * counter on that inode.
1879 */
1880 ASSERT(tip->i_delayed_blks == 0);
1881 tip->i_delayed_blks = ip->i_delayed_blks;
1882 ip->i_delayed_blks = 0;
1883
a133d952
DC
1884 switch (ip->i_d.di_format) {
1885 case XFS_DINODE_FMT_EXTENTS:
1886 /* If the extents fit in the inode, fix the
1887 * pointer. Otherwise it's already NULL or
1888 * pointing to the extent.
1889 */
1890 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1891 ifp->if_u1.if_extents =
1892 ifp->if_u2.if_inline_ext;
1893 }
1894 src_log_flags |= XFS_ILOG_DEXT;
1895 break;
1896 case XFS_DINODE_FMT_BTREE:
21b5c978 1897 ASSERT(ip->i_d.di_version < 3 ||
638f4416 1898 (src_log_flags & XFS_ILOG_DOWNER));
a133d952
DC
1899 src_log_flags |= XFS_ILOG_DBROOT;
1900 break;
1901 }
1902
a133d952
DC
1903 switch (tip->i_d.di_format) {
1904 case XFS_DINODE_FMT_EXTENTS:
1905 /* If the extents fit in the inode, fix the
1906 * pointer. Otherwise it's already NULL or
1907 * pointing to the extent.
1908 */
1909 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1910 tifp->if_u1.if_extents =
1911 tifp->if_u2.if_inline_ext;
1912 }
1913 target_log_flags |= XFS_ILOG_DEXT;
1914 break;
1915 case XFS_DINODE_FMT_BTREE:
1916 target_log_flags |= XFS_ILOG_DBROOT;
21b5c978 1917 ASSERT(tip->i_d.di_version < 3 ||
638f4416 1918 (target_log_flags & XFS_ILOG_DOWNER));
a133d952
DC
1919 break;
1920 }
1921
a133d952
DC
1922 xfs_trans_log_inode(tp, ip, src_log_flags);
1923 xfs_trans_log_inode(tp, tip, target_log_flags);
1924
1925 /*
1926 * If this is a synchronous mount, make sure that the
1927 * transaction goes to disk before returning to the user.
1928 */
1929 if (mp->m_flags & XFS_MOUNT_WSYNC)
1930 xfs_trans_set_sync(tp);
1931
70393313 1932 error = xfs_trans_commit(tp);
a133d952
DC
1933
1934 trace_xfs_swap_extent_after(ip, 0);
1935 trace_xfs_swap_extent_after(tip, 1);
1936out:
1937 kmem_free(tempifp);
1938 return error;
1939
1940out_unlock:
81217683
DC
1941 xfs_iunlock(ip, lock_flags);
1942 xfs_iunlock(tip, lock_flags);
a133d952
DC
1943 goto out;
1944
1945out_trans_cancel:
4906e215 1946 xfs_trans_cancel(tp);
723cac48 1947 goto out;
a133d952 1948}