dax: use sb_issue_zerout instead of calling dax_clear_sectors
[deliverable/linux.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 */
896 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
897
898 if (need_iolock) {
899 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
4906e215 900 xfs_trans_cancel(tp);
2451337d 901 return -EAGAIN;
c24b5dfa
DC
902 }
903 }
904
3d3c8b52 905 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
c24b5dfa
DC
906 if (error) {
907 ASSERT(XFS_FORCED_SHUTDOWN(mp));
4906e215 908 xfs_trans_cancel(tp);
c24b5dfa
DC
909 if (need_iolock)
910 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
911 return error;
912 }
913
914 xfs_ilock(ip, XFS_ILOCK_EXCL);
915 xfs_trans_ijoin(tp, ip, 0);
916
917 /*
918 * Do not update the on-disk file size. If we update the
919 * on-disk file size and then the system crashes before the
920 * contents of the file are flushed to disk then the files
921 * may be full of holes (ie NULL files bug).
922 */
923 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
924 XFS_ISIZE(ip));
925 if (error) {
926 /*
927 * If we get an error at this point we simply don't
928 * bother truncating the file.
929 */
4906e215 930 xfs_trans_cancel(tp);
c24b5dfa 931 } else {
70393313 932 error = xfs_trans_commit(tp);
c24b5dfa
DC
933 if (!error)
934 xfs_inode_clear_eofblocks_tag(ip);
935 }
936
937 xfs_iunlock(ip, XFS_ILOCK_EXCL);
938 if (need_iolock)
939 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
940 }
941 return error;
942}
943
83aee9e4 944int
c24b5dfa 945xfs_alloc_file_space(
83aee9e4 946 struct xfs_inode *ip,
c24b5dfa
DC
947 xfs_off_t offset,
948 xfs_off_t len,
5f8aca8b 949 int alloc_type)
c24b5dfa
DC
950{
951 xfs_mount_t *mp = ip->i_mount;
952 xfs_off_t count;
953 xfs_filblks_t allocated_fsb;
954 xfs_filblks_t allocatesize_fsb;
955 xfs_extlen_t extsz, temp;
956 xfs_fileoff_t startoffset_fsb;
957 xfs_fsblock_t firstfsb;
958 int nimaps;
959 int quota_flag;
960 int rt;
961 xfs_trans_t *tp;
962 xfs_bmbt_irec_t imaps[1], *imapp;
963 xfs_bmap_free_t free_list;
964 uint qblocks, resblks, resrtextents;
c24b5dfa
DC
965 int error;
966
967 trace_xfs_alloc_file_space(ip);
968
969 if (XFS_FORCED_SHUTDOWN(mp))
2451337d 970 return -EIO;
c24b5dfa
DC
971
972 error = xfs_qm_dqattach(ip, 0);
973 if (error)
974 return error;
975
976 if (len <= 0)
2451337d 977 return -EINVAL;
c24b5dfa
DC
978
979 rt = XFS_IS_REALTIME_INODE(ip);
980 extsz = xfs_get_extsz_hint(ip);
981
982 count = len;
983 imapp = &imaps[0];
984 nimaps = 1;
985 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
986 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
987
988 /*
989 * Allocate file space until done or until there is an error
990 */
991 while (allocatesize_fsb && !error) {
992 xfs_fileoff_t s, e;
993
994 /*
995 * Determine space reservations for data/realtime.
996 */
997 if (unlikely(extsz)) {
998 s = startoffset_fsb;
999 do_div(s, extsz);
1000 s *= extsz;
1001 e = startoffset_fsb + allocatesize_fsb;
1002 if ((temp = do_mod(startoffset_fsb, extsz)))
1003 e += temp;
1004 if ((temp = do_mod(e, extsz)))
1005 e += extsz - temp;
1006 } else {
1007 s = 0;
1008 e = allocatesize_fsb;
1009 }
1010
1011 /*
1012 * The transaction reservation is limited to a 32-bit block
1013 * count, hence we need to limit the number of blocks we are
1014 * trying to reserve to avoid an overflow. We can't allocate
1015 * more than @nimaps extents, and an extent is limited on disk
1016 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1017 */
1018 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
1019 if (unlikely(rt)) {
1020 resrtextents = qblocks = resblks;
1021 resrtextents /= mp->m_sb.sb_rextsize;
1022 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1023 quota_flag = XFS_QMOPT_RES_RTBLKS;
1024 } else {
1025 resrtextents = 0;
1026 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
1027 quota_flag = XFS_QMOPT_RES_REGBLKS;
1028 }
1029
1030 /*
1031 * Allocate and setup the transaction.
1032 */
1033 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
3d3c8b52
JL
1034 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_write,
1035 resblks, resrtextents);
c24b5dfa
DC
1036 /*
1037 * Check for running out of space
1038 */
1039 if (error) {
1040 /*
1041 * Free the transaction structure.
1042 */
2451337d 1043 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4906e215 1044 xfs_trans_cancel(tp);
c24b5dfa
DC
1045 break;
1046 }
1047 xfs_ilock(ip, XFS_ILOCK_EXCL);
1048 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1049 0, quota_flag);
1050 if (error)
1051 goto error1;
1052
1053 xfs_trans_ijoin(tp, ip, 0);
1054
1055 xfs_bmap_init(&free_list, &firstfsb);
1056 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1057 allocatesize_fsb, alloc_type, &firstfsb,
dbd5c8c9 1058 resblks, imapp, &nimaps, &free_list);
f6106efa 1059 if (error)
c24b5dfa 1060 goto error0;
c24b5dfa
DC
1061
1062 /*
1063 * Complete the transaction
1064 */
f6106efa
ES
1065 error = xfs_bmap_finish(&tp, &free_list, NULL);
1066 if (error)
c24b5dfa 1067 goto error0;
c24b5dfa 1068
70393313 1069 error = xfs_trans_commit(tp);
c24b5dfa 1070 xfs_iunlock(ip, XFS_ILOCK_EXCL);
f6106efa 1071 if (error)
c24b5dfa 1072 break;
c24b5dfa
DC
1073
1074 allocated_fsb = imapp->br_blockcount;
1075
1076 if (nimaps == 0) {
2451337d 1077 error = -ENOSPC;
c24b5dfa
DC
1078 break;
1079 }
1080
1081 startoffset_fsb += allocated_fsb;
1082 allocatesize_fsb -= allocated_fsb;
1083 }
1084
1085 return error;
1086
1087error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
1088 xfs_bmap_cancel(&free_list);
1089 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
1090
1091error1: /* Just cancel transaction */
4906e215 1092 xfs_trans_cancel(tp);
c24b5dfa
DC
1093 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1094 return error;
1095}
1096
1097/*
1098 * Zero file bytes between startoff and endoff inclusive.
1099 * The iolock is held exclusive and no blocks are buffered.
1100 *
1101 * This function is used by xfs_free_file_space() to zero
1102 * partial blocks when the range to free is not block aligned.
1103 * When unreserving space with boundaries that are not block
1104 * aligned we round up the start and round down the end
1105 * boundaries and then use this function to zero the parts of
1106 * the blocks that got dropped during the rounding.
1107 */
1108STATIC int
1109xfs_zero_remaining_bytes(
1110 xfs_inode_t *ip,
1111 xfs_off_t startoff,
1112 xfs_off_t endoff)
1113{
1114 xfs_bmbt_irec_t imap;
1115 xfs_fileoff_t offset_fsb;
1116 xfs_off_t lastoffset;
1117 xfs_off_t offset;
1118 xfs_buf_t *bp;
1119 xfs_mount_t *mp = ip->i_mount;
1120 int nimap;
1121 int error = 0;
1122
1123 /*
1124 * Avoid doing I/O beyond eof - it's not necessary
1125 * since nothing can read beyond eof. The space will
1126 * be zeroed when the file is extended anyway.
1127 */
1128 if (startoff >= XFS_ISIZE(ip))
1129 return 0;
1130
1131 if (endoff > XFS_ISIZE(ip))
1132 endoff = XFS_ISIZE(ip);
1133
c24b5dfa 1134 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
4f317369
CH
1135 uint lock_mode;
1136
c24b5dfa
DC
1137 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1138 nimap = 1;
4f317369
CH
1139
1140 lock_mode = xfs_ilock_data_map_shared(ip);
c24b5dfa 1141 error = xfs_bmapi_read(ip, offset_fsb, 1, &imap, &nimap, 0);
4f317369
CH
1142 xfs_iunlock(ip, lock_mode);
1143
c24b5dfa
DC
1144 if (error || nimap < 1)
1145 break;
1146 ASSERT(imap.br_blockcount >= 1);
1147 ASSERT(imap.br_startoff == offset_fsb);
4f69f578
DC
1148 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1149
1150 if (imap.br_startblock == HOLESTARTBLOCK ||
1151 imap.br_state == XFS_EXT_UNWRITTEN) {
1152 /* skip the entire extent */
1153 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff +
1154 imap.br_blockcount) - 1;
1155 continue;
1156 }
1157
c24b5dfa
DC
1158 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
1159 if (lastoffset > endoff)
1160 lastoffset = endoff;
4f69f578
DC
1161
1162 /* DAX can just zero the backing device directly */
1163 if (IS_DAX(VFS_I(ip))) {
1164 error = dax_zero_page_range(VFS_I(ip), offset,
1165 lastoffset - offset + 1,
1166 xfs_get_blocks_direct);
1167 if (error)
1168 return error;
c24b5dfa 1169 continue;
4f69f578 1170 }
83a0adc3 1171
8c156125
CH
1172 error = xfs_buf_read_uncached(XFS_IS_REALTIME_INODE(ip) ?
1173 mp->m_rtdev_targp : mp->m_ddev_targp,
1174 xfs_fsb_to_db(ip, imap.br_startblock),
1175 BTOBB(mp->m_sb.sb_blocksize),
1176 0, &bp, NULL);
1177 if (error)
1178 return error;
1179
c24b5dfa 1180 memset(bp->b_addr +
8c156125
CH
1181 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
1182 0, lastoffset - offset + 1);
83a0adc3 1183
8c156125
CH
1184 error = xfs_bwrite(bp);
1185 xfs_buf_relse(bp);
1186 if (error)
1187 return error;
c24b5dfa 1188 }
c24b5dfa
DC
1189 return error;
1190}
1191
83aee9e4 1192int
c24b5dfa 1193xfs_free_file_space(
83aee9e4 1194 struct xfs_inode *ip,
c24b5dfa 1195 xfs_off_t offset,
5f8aca8b 1196 xfs_off_t len)
c24b5dfa 1197{
c24b5dfa
DC
1198 int done;
1199 xfs_fileoff_t endoffset_fsb;
1200 int error;
1201 xfs_fsblock_t firstfsb;
1202 xfs_bmap_free_t free_list;
1203 xfs_bmbt_irec_t imap;
1204 xfs_off_t ioffset;
8b5279e3 1205 xfs_off_t iendoffset;
c24b5dfa
DC
1206 xfs_extlen_t mod=0;
1207 xfs_mount_t *mp;
1208 int nimap;
1209 uint resblks;
1210 xfs_off_t rounding;
1211 int rt;
1212 xfs_fileoff_t startoffset_fsb;
1213 xfs_trans_t *tp;
c24b5dfa
DC
1214
1215 mp = ip->i_mount;
1216
1217 trace_xfs_free_file_space(ip);
1218
1219 error = xfs_qm_dqattach(ip, 0);
1220 if (error)
1221 return error;
1222
1223 error = 0;
1224 if (len <= 0) /* if nothing being freed */
1225 return error;
1226 rt = XFS_IS_REALTIME_INODE(ip);
1227 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
1228 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
1229
5f8aca8b
CH
1230 /* wait for the completion of any pending DIOs */
1231 inode_dio_wait(VFS_I(ip));
c24b5dfa 1232
09cbfeaf 1233 rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_SIZE);
8b5279e3
BF
1234 ioffset = round_down(offset, rounding);
1235 iendoffset = round_up(offset + len, rounding) - 1;
1236 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping, ioffset,
1237 iendoffset);
c24b5dfa 1238 if (error)
5f8aca8b 1239 goto out;
8b5279e3 1240 truncate_pagecache_range(VFS_I(ip), ioffset, iendoffset);
c24b5dfa
DC
1241
1242 /*
1243 * Need to zero the stuff we're not freeing, on disk.
1244 * If it's a realtime file & can't use unwritten extents then we
1245 * actually need to zero the extent edges. Otherwise xfs_bunmapi
1246 * will take care of it for us.
1247 */
1248 if (rt && !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
1249 nimap = 1;
1250 error = xfs_bmapi_read(ip, startoffset_fsb, 1,
1251 &imap, &nimap, 0);
1252 if (error)
5f8aca8b 1253 goto out;
c24b5dfa
DC
1254 ASSERT(nimap == 0 || nimap == 1);
1255 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1256 xfs_daddr_t block;
1257
1258 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1259 block = imap.br_startblock;
1260 mod = do_div(block, mp->m_sb.sb_rextsize);
1261 if (mod)
1262 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1263 }
1264 nimap = 1;
1265 error = xfs_bmapi_read(ip, endoffset_fsb - 1, 1,
1266 &imap, &nimap, 0);
1267 if (error)
5f8aca8b 1268 goto out;
c24b5dfa
DC
1269 ASSERT(nimap == 0 || nimap == 1);
1270 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1271 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1272 mod++;
1273 if (mod && (mod != mp->m_sb.sb_rextsize))
1274 endoffset_fsb -= mod;
1275 }
1276 }
1277 if ((done = (endoffset_fsb <= startoffset_fsb)))
1278 /*
1279 * One contiguous piece to clear
1280 */
1281 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
1282 else {
1283 /*
1284 * Some full blocks, possibly two pieces to clear
1285 */
1286 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
1287 error = xfs_zero_remaining_bytes(ip, offset,
1288 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
1289 if (!error &&
1290 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
1291 error = xfs_zero_remaining_bytes(ip,
1292 XFS_FSB_TO_B(mp, endoffset_fsb),
1293 offset + len - 1);
1294 }
1295
1296 /*
1297 * free file space until done or until there is an error
1298 */
1299 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1300 while (!error && !done) {
1301
1302 /*
1303 * allocate and setup the transaction. Allow this
1304 * transaction to dip into the reserve blocks to ensure
1305 * the freeing of the space succeeds at ENOSPC.
1306 */
1307 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
3d3c8b52 1308 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_write, resblks, 0);
c24b5dfa
DC
1309
1310 /*
1311 * check for running out of space
1312 */
1313 if (error) {
1314 /*
1315 * Free the transaction structure.
1316 */
2451337d 1317 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4906e215 1318 xfs_trans_cancel(tp);
c24b5dfa
DC
1319 break;
1320 }
1321 xfs_ilock(ip, XFS_ILOCK_EXCL);
1322 error = xfs_trans_reserve_quota(tp, mp,
1323 ip->i_udquot, ip->i_gdquot, ip->i_pdquot,
1324 resblks, 0, XFS_QMOPT_RES_REGBLKS);
1325 if (error)
1326 goto error1;
1327
1328 xfs_trans_ijoin(tp, ip, 0);
1329
1330 /*
1331 * issue the bunmapi() call to free the blocks
1332 */
1333 xfs_bmap_init(&free_list, &firstfsb);
1334 error = xfs_bunmapi(tp, ip, startoffset_fsb,
1335 endoffset_fsb - startoffset_fsb,
1336 0, 2, &firstfsb, &free_list, &done);
f6106efa 1337 if (error)
c24b5dfa 1338 goto error0;
c24b5dfa
DC
1339
1340 /*
1341 * complete the transaction
1342 */
f6106efa
ES
1343 error = xfs_bmap_finish(&tp, &free_list, NULL);
1344 if (error)
c24b5dfa 1345 goto error0;
c24b5dfa 1346
70393313 1347 error = xfs_trans_commit(tp);
c24b5dfa
DC
1348 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1349 }
1350
5f8aca8b 1351 out:
c24b5dfa
DC
1352 return error;
1353
1354 error0:
1355 xfs_bmap_cancel(&free_list);
1356 error1:
4906e215 1357 xfs_trans_cancel(tp);
5f8aca8b
CH
1358 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1359 goto out;
c24b5dfa
DC
1360}
1361
5d11fb4b
BF
1362/*
1363 * Preallocate and zero a range of a file. This mechanism has the allocation
1364 * semantics of fallocate and in addition converts data in the range to zeroes.
1365 */
865e9446 1366int
c24b5dfa
DC
1367xfs_zero_file_space(
1368 struct xfs_inode *ip,
1369 xfs_off_t offset,
5f8aca8b 1370 xfs_off_t len)
c24b5dfa
DC
1371{
1372 struct xfs_mount *mp = ip->i_mount;
5d11fb4b 1373 uint blksize;
c24b5dfa
DC
1374 int error;
1375
897b73b6
DC
1376 trace_xfs_zero_file_space(ip);
1377
5d11fb4b 1378 blksize = 1 << mp->m_sb.sb_blocklog;
c24b5dfa
DC
1379
1380 /*
5d11fb4b
BF
1381 * Punch a hole and prealloc the range. We use hole punch rather than
1382 * unwritten extent conversion for two reasons:
1383 *
1384 * 1.) Hole punch handles partial block zeroing for us.
1385 *
1386 * 2.) If prealloc returns ENOSPC, the file range is still zero-valued
1387 * by virtue of the hole punch.
c24b5dfa 1388 */
5d11fb4b
BF
1389 error = xfs_free_file_space(ip, offset, len);
1390 if (error)
1391 goto out;
c24b5dfa 1392
5d11fb4b
BF
1393 error = xfs_alloc_file_space(ip, round_down(offset, blksize),
1394 round_up(offset + len, blksize) -
1395 round_down(offset, blksize),
1396 XFS_BMAPI_PREALLOC);
5f8aca8b 1397out:
c24b5dfa
DC
1398 return error;
1399
1400}
1401
e1d8fb88 1402/*
a904b1ca
NJ
1403 * @next_fsb will keep track of the extent currently undergoing shift.
1404 * @stop_fsb will keep track of the extent at which we have to stop.
1405 * If we are shifting left, we will start with block (offset + len) and
1406 * shift each extent till last extent.
1407 * If we are shifting right, we will start with last extent inside file space
1408 * and continue until we reach the block corresponding to offset.
e1d8fb88 1409 */
72c1a739 1410static int
a904b1ca
NJ
1411xfs_shift_file_space(
1412 struct xfs_inode *ip,
1413 xfs_off_t offset,
1414 xfs_off_t len,
1415 enum shift_direction direction)
e1d8fb88
NJ
1416{
1417 int done = 0;
1418 struct xfs_mount *mp = ip->i_mount;
1419 struct xfs_trans *tp;
1420 int error;
e1d8fb88
NJ
1421 struct xfs_bmap_free free_list;
1422 xfs_fsblock_t first_block;
a904b1ca 1423 xfs_fileoff_t stop_fsb;
2c845f5a 1424 xfs_fileoff_t next_fsb;
e1d8fb88
NJ
1425 xfs_fileoff_t shift_fsb;
1426
a904b1ca 1427 ASSERT(direction == SHIFT_LEFT || direction == SHIFT_RIGHT);
e1d8fb88 1428
a904b1ca
NJ
1429 if (direction == SHIFT_LEFT) {
1430 next_fsb = XFS_B_TO_FSB(mp, offset + len);
1431 stop_fsb = XFS_B_TO_FSB(mp, VFS_I(ip)->i_size);
1432 } else {
1433 /*
1434 * If right shift, delegate the work of initialization of
1435 * next_fsb to xfs_bmap_shift_extent as it has ilock held.
1436 */
1437 next_fsb = NULLFSBLOCK;
1438 stop_fsb = XFS_B_TO_FSB(mp, offset);
1439 }
e1d8fb88 1440
e1d8fb88
NJ
1441 shift_fsb = XFS_B_TO_FSB(mp, len);
1442
f71721d0
BF
1443 /*
1444 * Trim eofblocks to avoid shifting uninitialized post-eof preallocation
1445 * into the accessible region of the file.
1446 */
41b9d726
BF
1447 if (xfs_can_free_eofblocks(ip, true)) {
1448 error = xfs_free_eofblocks(mp, ip, false);
1449 if (error)
1450 return error;
1451 }
1669a8ca 1452
f71721d0
BF
1453 /*
1454 * Writeback and invalidate cache for the remainder of the file as we're
a904b1ca 1455 * about to shift down every extent from offset to EOF.
f71721d0
BF
1456 */
1457 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
a904b1ca 1458 offset, -1);
f71721d0
BF
1459 if (error)
1460 return error;
1461 error = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
09cbfeaf 1462 offset >> PAGE_SHIFT, -1);
e1d8fb88
NJ
1463 if (error)
1464 return error;
1465
a904b1ca
NJ
1466 /*
1467 * The extent shiting code works on extent granularity. So, if
1468 * stop_fsb is not the starting block of extent, we need to split
1469 * the extent at stop_fsb.
1470 */
1471 if (direction == SHIFT_RIGHT) {
1472 error = xfs_bmap_split_extent(ip, stop_fsb);
1473 if (error)
1474 return error;
1475 }
1476
e1d8fb88
NJ
1477 while (!error && !done) {
1478 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
e1d8fb88
NJ
1479 /*
1480 * We would need to reserve permanent block for transaction.
1481 * This will come into picture when after shifting extent into
1482 * hole we found that adjacent extents can be merged which
1483 * may lead to freeing of a block during record update.
1484 */
1485 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_write,
1486 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0);
1487 if (error) {
4906e215 1488 xfs_trans_cancel(tp);
e1d8fb88
NJ
1489 break;
1490 }
1491
1492 xfs_ilock(ip, XFS_ILOCK_EXCL);
1493 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot,
1494 ip->i_gdquot, ip->i_pdquot,
1495 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0,
1496 XFS_QMOPT_RES_REGBLKS);
1497 if (error)
d4a97a04 1498 goto out_trans_cancel;
e1d8fb88 1499
a904b1ca 1500 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
e1d8fb88
NJ
1501
1502 xfs_bmap_init(&free_list, &first_block);
1503
1504 /*
1505 * We are using the write transaction in which max 2 bmbt
1506 * updates are allowed
1507 */
a904b1ca
NJ
1508 error = xfs_bmap_shift_extents(tp, ip, &next_fsb, shift_fsb,
1509 &done, stop_fsb, &first_block, &free_list,
1510 direction, XFS_BMAP_MAX_SHIFT_EXTENTS);
e1d8fb88 1511 if (error)
d4a97a04 1512 goto out_bmap_cancel;
e1d8fb88 1513
f6106efa 1514 error = xfs_bmap_finish(&tp, &free_list, NULL);
e1d8fb88 1515 if (error)
d4a97a04 1516 goto out_bmap_cancel;
e1d8fb88 1517
70393313 1518 error = xfs_trans_commit(tp);
e1d8fb88
NJ
1519 }
1520
1521 return error;
1522
d4a97a04
BF
1523out_bmap_cancel:
1524 xfs_bmap_cancel(&free_list);
1525out_trans_cancel:
4906e215 1526 xfs_trans_cancel(tp);
e1d8fb88
NJ
1527 return error;
1528}
1529
a904b1ca
NJ
1530/*
1531 * xfs_collapse_file_space()
1532 * This routine frees disk space and shift extent for the given file.
1533 * The first thing we do is to free data blocks in the specified range
1534 * by calling xfs_free_file_space(). It would also sync dirty data
1535 * and invalidate page cache over the region on which collapse range
1536 * is working. And Shift extent records to the left to cover a hole.
1537 * RETURNS:
1538 * 0 on success
1539 * errno on error
1540 *
1541 */
1542int
1543xfs_collapse_file_space(
1544 struct xfs_inode *ip,
1545 xfs_off_t offset,
1546 xfs_off_t len)
1547{
1548 int error;
1549
1550 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1551 trace_xfs_collapse_file_space(ip);
1552
1553 error = xfs_free_file_space(ip, offset, len);
1554 if (error)
1555 return error;
1556
1557 return xfs_shift_file_space(ip, offset, len, SHIFT_LEFT);
1558}
1559
1560/*
1561 * xfs_insert_file_space()
1562 * This routine create hole space by shifting extents for the given file.
1563 * The first thing we do is to sync dirty data and invalidate page cache
1564 * over the region on which insert range is working. And split an extent
1565 * to two extents at given offset by calling xfs_bmap_split_extent.
1566 * And shift all extent records which are laying between [offset,
1567 * last allocated extent] to the right to reserve hole range.
1568 * RETURNS:
1569 * 0 on success
1570 * errno on error
1571 */
1572int
1573xfs_insert_file_space(
1574 struct xfs_inode *ip,
1575 loff_t offset,
1576 loff_t len)
1577{
1578 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1579 trace_xfs_insert_file_space(ip);
1580
1581 return xfs_shift_file_space(ip, offset, len, SHIFT_RIGHT);
1582}
1583
a133d952
DC
1584/*
1585 * We need to check that the format of the data fork in the temporary inode is
1586 * valid for the target inode before doing the swap. This is not a problem with
1587 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
1588 * data fork depending on the space the attribute fork is taking so we can get
1589 * invalid formats on the target inode.
1590 *
1591 * E.g. target has space for 7 extents in extent format, temp inode only has
1592 * space for 6. If we defragment down to 7 extents, then the tmp format is a
1593 * btree, but when swapped it needs to be in extent format. Hence we can't just
1594 * blindly swap data forks on attr2 filesystems.
1595 *
1596 * Note that we check the swap in both directions so that we don't end up with
1597 * a corrupt temporary inode, either.
1598 *
1599 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
1600 * inode will prevent this situation from occurring, so all we do here is
1601 * reject and log the attempt. basically we are putting the responsibility on
1602 * userspace to get this right.
1603 */
1604static int
1605xfs_swap_extents_check_format(
1606 xfs_inode_t *ip, /* target inode */
1607 xfs_inode_t *tip) /* tmp inode */
1608{
1609
1610 /* Should never get a local format */
1611 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
1612 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
2451337d 1613 return -EINVAL;
a133d952
DC
1614
1615 /*
1616 * if the target inode has less extents that then temporary inode then
1617 * why did userspace call us?
1618 */
1619 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
2451337d 1620 return -EINVAL;
a133d952
DC
1621
1622 /*
1623 * if the target inode is in extent form and the temp inode is in btree
1624 * form then we will end up with the target inode in the wrong format
1625 * as we already know there are less extents in the temp inode.
1626 */
1627 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1628 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
2451337d 1629 return -EINVAL;
a133d952
DC
1630
1631 /* Check temp in extent form to max in target */
1632 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1633 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
1634 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
2451337d 1635 return -EINVAL;
a133d952
DC
1636
1637 /* Check target in extent form to max in temp */
1638 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1639 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
1640 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
2451337d 1641 return -EINVAL;
a133d952
DC
1642
1643 /*
1644 * If we are in a btree format, check that the temp root block will fit
1645 * in the target and that it has enough extents to be in btree format
1646 * in the target.
1647 *
1648 * Note that we have to be careful to allow btree->extent conversions
1649 * (a common defrag case) which will occur when the temp inode is in
1650 * extent format...
1651 */
1652 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1653 if (XFS_IFORK_BOFF(ip) &&
1654 XFS_BMAP_BMDR_SPACE(tip->i_df.if_broot) > XFS_IFORK_BOFF(ip))
2451337d 1655 return -EINVAL;
a133d952
DC
1656 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
1657 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
2451337d 1658 return -EINVAL;
a133d952
DC
1659 }
1660
1661 /* Reciprocal target->temp btree format checks */
1662 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1663 if (XFS_IFORK_BOFF(tip) &&
1664 XFS_BMAP_BMDR_SPACE(ip->i_df.if_broot) > XFS_IFORK_BOFF(tip))
2451337d 1665 return -EINVAL;
a133d952
DC
1666 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
1667 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
2451337d 1668 return -EINVAL;
a133d952
DC
1669 }
1670
1671 return 0;
1672}
1673
7abbb8f9 1674static int
4ef897a2
DC
1675xfs_swap_extent_flush(
1676 struct xfs_inode *ip)
1677{
1678 int error;
1679
1680 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1681 if (error)
1682 return error;
1683 truncate_pagecache_range(VFS_I(ip), 0, -1);
1684
1685 /* Verify O_DIRECT for ftmp */
1686 if (VFS_I(ip)->i_mapping->nrpages)
1687 return -EINVAL;
4ef897a2
DC
1688 return 0;
1689}
1690
a133d952
DC
1691int
1692xfs_swap_extents(
1693 xfs_inode_t *ip, /* target inode */
1694 xfs_inode_t *tip, /* tmp inode */
1695 xfs_swapext_t *sxp)
1696{
1697 xfs_mount_t *mp = ip->i_mount;
1698 xfs_trans_t *tp;
1699 xfs_bstat_t *sbp = &sxp->sx_stat;
1700 xfs_ifork_t *tempifp, *ifp, *tifp;
1701 int src_log_flags, target_log_flags;
1702 int error = 0;
1703 int aforkblks = 0;
1704 int taforkblks = 0;
1705 __uint64_t tmp;
81217683 1706 int lock_flags;
a133d952 1707
a133d952
DC
1708 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
1709 if (!tempifp) {
2451337d 1710 error = -ENOMEM;
a133d952
DC
1711 goto out;
1712 }
1713
1714 /*
723cac48
DC
1715 * Lock the inodes against other IO, page faults and truncate to
1716 * begin with. Then we can ensure the inodes are flushed and have no
1717 * page cache safely. Once we have done this we can take the ilocks and
1718 * do the rest of the checks.
a133d952 1719 */
723cac48 1720 lock_flags = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
a133d952 1721 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
723cac48 1722 xfs_lock_two_inodes(ip, tip, XFS_MMAPLOCK_EXCL);
a133d952
DC
1723
1724 /* Verify that both files have the same format */
c19b3b05 1725 if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) {
2451337d 1726 error = -EINVAL;
a133d952
DC
1727 goto out_unlock;
1728 }
1729
1730 /* Verify both files are either real-time or non-realtime */
1731 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
2451337d 1732 error = -EINVAL;
a133d952
DC
1733 goto out_unlock;
1734 }
1735
4ef897a2
DC
1736 error = xfs_swap_extent_flush(ip);
1737 if (error)
1738 goto out_unlock;
1739 error = xfs_swap_extent_flush(tip);
a133d952
DC
1740 if (error)
1741 goto out_unlock;
a133d952 1742
4ef897a2
DC
1743 tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
1744 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
1745 if (error) {
4906e215 1746 xfs_trans_cancel(tp);
a133d952
DC
1747 goto out_unlock;
1748 }
723cac48
DC
1749
1750 /*
1751 * Lock and join the inodes to the tansaction so that transaction commit
1752 * or cancel will unlock the inodes from this point onwards.
1753 */
4ef897a2
DC
1754 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1755 lock_flags |= XFS_ILOCK_EXCL;
723cac48
DC
1756 xfs_trans_ijoin(tp, ip, lock_flags);
1757 xfs_trans_ijoin(tp, tip, lock_flags);
1758
a133d952
DC
1759
1760 /* Verify all data are being swapped */
1761 if (sxp->sx_offset != 0 ||
1762 sxp->sx_length != ip->i_d.di_size ||
1763 sxp->sx_length != tip->i_d.di_size) {
2451337d 1764 error = -EFAULT;
4ef897a2 1765 goto out_trans_cancel;
a133d952
DC
1766 }
1767
1768 trace_xfs_swap_extent_before(ip, 0);
1769 trace_xfs_swap_extent_before(tip, 1);
1770
1771 /* check inode formats now that data is flushed */
1772 error = xfs_swap_extents_check_format(ip, tip);
1773 if (error) {
1774 xfs_notice(mp,
1775 "%s: inode 0x%llx format is incompatible for exchanging.",
1776 __func__, ip->i_ino);
4ef897a2 1777 goto out_trans_cancel;
a133d952
DC
1778 }
1779
1780 /*
1781 * Compare the current change & modify times with that
1782 * passed in. If they differ, we abort this swap.
1783 * This is the mechanism used to ensure the calling
1784 * process that the file was not changed out from
1785 * under it.
1786 */
1787 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
1788 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
1789 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
1790 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
2451337d 1791 error = -EBUSY;
81217683 1792 goto out_trans_cancel;
a133d952 1793 }
a133d952
DC
1794 /*
1795 * Count the number of extended attribute blocks
1796 */
1797 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
1798 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1799 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
1800 if (error)
1801 goto out_trans_cancel;
1802 }
1803 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
1804 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1805 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
1806 &taforkblks);
1807 if (error)
1808 goto out_trans_cancel;
1809 }
1810
21b5c978
DC
1811 /*
1812 * Before we've swapped the forks, lets set the owners of the forks
1813 * appropriately. We have to do this as we are demand paging the btree
1814 * buffers, and so the validation done on read will expect the owner
1815 * field to be correctly set. Once we change the owners, we can swap the
1816 * inode forks.
1817 *
1818 * Note the trickiness in setting the log flags - we set the owner log
1819 * flag on the opposite inode (i.e. the inode we are setting the new
1820 * owner to be) because once we swap the forks and log that, log
1821 * recovery is going to see the fork as owned by the swapped inode,
1822 * not the pre-swapped inodes.
1823 */
1824 src_log_flags = XFS_ILOG_CORE;
1825 target_log_flags = XFS_ILOG_CORE;
1826 if (ip->i_d.di_version == 3 &&
1827 ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
638f4416
DC
1828 target_log_flags |= XFS_ILOG_DOWNER;
1829 error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK,
1830 tip->i_ino, NULL);
21b5c978
DC
1831 if (error)
1832 goto out_trans_cancel;
1833 }
1834
1835 if (tip->i_d.di_version == 3 &&
1836 tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
638f4416
DC
1837 src_log_flags |= XFS_ILOG_DOWNER;
1838 error = xfs_bmbt_change_owner(tp, tip, XFS_DATA_FORK,
1839 ip->i_ino, NULL);
21b5c978
DC
1840 if (error)
1841 goto out_trans_cancel;
1842 }
1843
a133d952
DC
1844 /*
1845 * Swap the data forks of the inodes
1846 */
1847 ifp = &ip->i_df;
1848 tifp = &tip->i_df;
1849 *tempifp = *ifp; /* struct copy */
1850 *ifp = *tifp; /* struct copy */
1851 *tifp = *tempifp; /* struct copy */
1852
1853 /*
1854 * Fix the on-disk inode values
1855 */
1856 tmp = (__uint64_t)ip->i_d.di_nblocks;
1857 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
1858 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
1859
1860 tmp = (__uint64_t) ip->i_d.di_nextents;
1861 ip->i_d.di_nextents = tip->i_d.di_nextents;
1862 tip->i_d.di_nextents = tmp;
1863
1864 tmp = (__uint64_t) ip->i_d.di_format;
1865 ip->i_d.di_format = tip->i_d.di_format;
1866 tip->i_d.di_format = tmp;
1867
1868 /*
1869 * The extents in the source inode could still contain speculative
1870 * preallocation beyond EOF (e.g. the file is open but not modified
1871 * while defrag is in progress). In that case, we need to copy over the
1872 * number of delalloc blocks the data fork in the source inode is
1873 * tracking beyond EOF so that when the fork is truncated away when the
1874 * temporary inode is unlinked we don't underrun the i_delayed_blks
1875 * counter on that inode.
1876 */
1877 ASSERT(tip->i_delayed_blks == 0);
1878 tip->i_delayed_blks = ip->i_delayed_blks;
1879 ip->i_delayed_blks = 0;
1880
a133d952
DC
1881 switch (ip->i_d.di_format) {
1882 case XFS_DINODE_FMT_EXTENTS:
1883 /* If the extents fit in the inode, fix the
1884 * pointer. Otherwise it's already NULL or
1885 * pointing to the extent.
1886 */
1887 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1888 ifp->if_u1.if_extents =
1889 ifp->if_u2.if_inline_ext;
1890 }
1891 src_log_flags |= XFS_ILOG_DEXT;
1892 break;
1893 case XFS_DINODE_FMT_BTREE:
21b5c978 1894 ASSERT(ip->i_d.di_version < 3 ||
638f4416 1895 (src_log_flags & XFS_ILOG_DOWNER));
a133d952
DC
1896 src_log_flags |= XFS_ILOG_DBROOT;
1897 break;
1898 }
1899
a133d952
DC
1900 switch (tip->i_d.di_format) {
1901 case XFS_DINODE_FMT_EXTENTS:
1902 /* If the extents fit in the inode, fix the
1903 * pointer. Otherwise it's already NULL or
1904 * pointing to the extent.
1905 */
1906 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
1907 tifp->if_u1.if_extents =
1908 tifp->if_u2.if_inline_ext;
1909 }
1910 target_log_flags |= XFS_ILOG_DEXT;
1911 break;
1912 case XFS_DINODE_FMT_BTREE:
1913 target_log_flags |= XFS_ILOG_DBROOT;
21b5c978 1914 ASSERT(tip->i_d.di_version < 3 ||
638f4416 1915 (target_log_flags & XFS_ILOG_DOWNER));
a133d952
DC
1916 break;
1917 }
1918
a133d952
DC
1919 xfs_trans_log_inode(tp, ip, src_log_flags);
1920 xfs_trans_log_inode(tp, tip, target_log_flags);
1921
1922 /*
1923 * If this is a synchronous mount, make sure that the
1924 * transaction goes to disk before returning to the user.
1925 */
1926 if (mp->m_flags & XFS_MOUNT_WSYNC)
1927 xfs_trans_set_sync(tp);
1928
70393313 1929 error = xfs_trans_commit(tp);
a133d952
DC
1930
1931 trace_xfs_swap_extent_after(ip, 0);
1932 trace_xfs_swap_extent_after(tip, 1);
1933out:
1934 kmem_free(tempifp);
1935 return error;
1936
1937out_unlock:
81217683
DC
1938 xfs_iunlock(ip, lock_flags);
1939 xfs_iunlock(tip, lock_flags);
a133d952
DC
1940 goto out;
1941
1942out_trans_cancel:
4906e215 1943 xfs_trans_cancel(tp);
723cac48 1944 goto out;
a133d952 1945}
This page took 0.271188 seconds and 5 git commands to generate.