blob: 9319ee9759d431a5d82acf637fca2ef6ca709e53 [file] [log] [blame]
Dave Chinner68988112013-08-12 20:49:42 +10001/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10003 * Copyright (c) 2012 Red Hat, Inc.
Dave Chinner68988112013-08-12 20:49:42 +10004 * 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"
Dave Chinner70a98832013-10-23 10:36:05 +110021#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Dave Chinner68988112013-08-12 20:49:42 +100025#include "xfs_bit.h"
Dave Chinner68988112013-08-12 20:49:42 +100026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100028#include "xfs_defer.h"
Dave Chinner68988112013-08-12 20:49:42 +100029#include "xfs_inode.h"
30#include "xfs_btree.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans.h"
Dave Chinner68988112013-08-12 20:49:42 +100032#include "xfs_extfree_item.h"
33#include "xfs_alloc.h"
34#include "xfs_bmap.h"
35#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110036#include "xfs_bmap_btree.h"
Dave Chinner68988112013-08-12 20:49:42 +100037#include "xfs_rtalloc.h"
38#include "xfs_error.h"
39#include "xfs_quota.h"
40#include "xfs_trans_space.h"
41#include "xfs_trace.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100042#include "xfs_icache.h"
Dave Chinner239880e2013-10-23 10:50:10 +110043#include "xfs_log.h"
Darrick J. Wong9c194642016-08-03 12:16:05 +100044#include "xfs_rmap_btree.h"
Darrick J. Wongf86f4032016-10-03 09:11:41 -070045#include "xfs_iomap.h"
46#include "xfs_reflink.h"
47#include "xfs_refcount.h"
Dave Chinner68988112013-08-12 20:49:42 +100048
49/* Kernel only BMAP related definitions and functions */
50
51/*
52 * Convert the given file system block to a disk block. We have to treat it
53 * differently based on whether the file is a real time file or not, because the
54 * bmap code does.
55 */
56xfs_daddr_t
57xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb)
58{
59 return (XFS_IS_REALTIME_INODE(ip) ? \
60 (xfs_daddr_t)XFS_FSB_TO_BB((ip)->i_mount, (fsb)) : \
61 XFS_FSB_TO_DADDR((ip)->i_mount, (fsb)));
62}
63
64/*
Dave Chinner3fbbbea2015-11-03 12:27:22 +110065 * Routine to zero an extent on disk allocated to the specific inode.
66 *
67 * The VFS functions take a linearised filesystem block offset, so we have to
68 * convert the sparse xfs fsb to the right format first.
69 * VFS types are real funky, too.
70 */
71int
72xfs_zero_extent(
73 struct xfs_inode *ip,
74 xfs_fsblock_t start_fsb,
75 xfs_off_t count_fsb)
76{
77 struct xfs_mount *mp = ip->i_mount;
78 xfs_daddr_t sector = xfs_fsb_to_db(ip, start_fsb);
79 sector_t block = XFS_BB_TO_FSBT(mp, sector);
Dave Chinner3fbbbea2015-11-03 12:27:22 +110080
Matthew Wilcox3dc29162016-03-15 11:20:41 -060081 return blkdev_issue_zeroout(xfs_find_bdev_for_inode(VFS_I(ip)),
82 block << (mp->m_super->s_blocksize_bits - 9),
83 count_fsb << (mp->m_super->s_blocksize_bits - 9),
84 GFP_NOFS, true);
Dave Chinner3fbbbea2015-11-03 12:27:22 +110085}
86
Dave Chinner68988112013-08-12 20:49:42 +100087int
88xfs_bmap_rtalloc(
89 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
90{
91 xfs_alloctype_t atype = 0; /* type for allocation routines */
92 int error; /* error return value */
93 xfs_mount_t *mp; /* mount point structure */
94 xfs_extlen_t prod = 0; /* product factor for allocators */
95 xfs_extlen_t ralen = 0; /* realtime allocation length */
96 xfs_extlen_t align; /* minimum allocation alignment */
97 xfs_rtblock_t rtb;
98
99 mp = ap->ip->i_mount;
100 align = xfs_get_extsz_hint(ap->ip);
101 prod = align / mp->m_sb.sb_rextsize;
102 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
103 align, 1, ap->eof, 0,
104 ap->conv, &ap->offset, &ap->length);
105 if (error)
106 return error;
107 ASSERT(ap->length);
108 ASSERT(ap->length % mp->m_sb.sb_rextsize == 0);
109
110 /*
111 * If the offset & length are not perfectly aligned
112 * then kill prod, it will just get us in trouble.
113 */
114 if (do_mod(ap->offset, align) || ap->length % align)
115 prod = 1;
116 /*
117 * Set ralen to be the actual requested length in rtextents.
118 */
119 ralen = ap->length / mp->m_sb.sb_rextsize;
120 /*
121 * If the old value was close enough to MAXEXTLEN that
122 * we rounded up to it, cut it back so it's valid again.
123 * Note that if it's a really large request (bigger than
124 * MAXEXTLEN), we don't hear about that number, and can't
125 * adjust the starting point to match it.
126 */
127 if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN)
128 ralen = MAXEXTLEN / mp->m_sb.sb_rextsize;
129
130 /*
Dave Chinner4b680af2016-02-08 10:46:51 +1100131 * Lock out modifications to both the RT bitmap and summary inodes
Dave Chinner68988112013-08-12 20:49:42 +1000132 */
Darrick J. Wongf4a06602016-08-03 11:00:42 +1000133 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
Dave Chinner68988112013-08-12 20:49:42 +1000134 xfs_trans_ijoin(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Darrick J. Wongf4a06602016-08-03 11:00:42 +1000135 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
Dave Chinner4b680af2016-02-08 10:46:51 +1100136 xfs_trans_ijoin(ap->tp, mp->m_rsumip, XFS_ILOCK_EXCL);
Dave Chinner68988112013-08-12 20:49:42 +1000137
138 /*
139 * If it's an allocation to an empty file at offset 0,
140 * pick an extent that will space things out in the rt area.
141 */
142 if (ap->eof && ap->offset == 0) {
143 xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */
144
145 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx);
146 if (error)
147 return error;
148 ap->blkno = rtx * mp->m_sb.sb_rextsize;
149 } else {
150 ap->blkno = 0;
151 }
152
153 xfs_bmap_adjacent(ap);
154
155 /*
156 * Realtime allocation, done through xfs_rtallocate_extent.
157 */
158 atype = ap->blkno == 0 ? XFS_ALLOCTYPE_ANY_AG : XFS_ALLOCTYPE_NEAR_BNO;
159 do_div(ap->blkno, mp->m_sb.sb_rextsize);
160 rtb = ap->blkno;
161 ap->length = ralen;
162 if ((error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1, ap->length,
163 &ralen, atype, ap->wasdel, prod, &rtb)))
164 return error;
165 if (rtb == NULLFSBLOCK && prod > 1 &&
166 (error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1,
167 ap->length, &ralen, atype,
168 ap->wasdel, 1, &rtb)))
169 return error;
170 ap->blkno = rtb;
171 if (ap->blkno != NULLFSBLOCK) {
172 ap->blkno *= mp->m_sb.sb_rextsize;
173 ralen *= mp->m_sb.sb_rextsize;
174 ap->length = ralen;
175 ap->ip->i_d.di_nblocks += ralen;
176 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
177 if (ap->wasdel)
178 ap->ip->i_delayed_blks -= ralen;
179 /*
180 * Adjust the disk quota also. This was reserved
181 * earlier.
182 */
183 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
184 ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT :
185 XFS_TRANS_DQ_RTBCOUNT, (long) ralen);
Dave Chinner3fbbbea2015-11-03 12:27:22 +1100186
187 /* Zero the extent if we were asked to do so */
Dave Chinner292378e2016-09-26 08:21:28 +1000188 if (ap->datatype & XFS_ALLOC_USERDATA_ZERO) {
Dave Chinner3fbbbea2015-11-03 12:27:22 +1100189 error = xfs_zero_extent(ap->ip, ap->blkno, ap->length);
190 if (error)
191 return error;
192 }
Dave Chinner68988112013-08-12 20:49:42 +1000193 } else {
194 ap->length = 0;
195 }
196 return 0;
197}
198
199/*
Dave Chinner68988112013-08-12 20:49:42 +1000200 * Check if the endoff is outside the last extent. If so the caller will grow
201 * the allocation to a stripe unit boundary. All offsets are considered outside
202 * the end of file for an empty fork, so 1 is returned in *eof in that case.
203 */
204int
205xfs_bmap_eof(
206 struct xfs_inode *ip,
207 xfs_fileoff_t endoff,
208 int whichfork,
209 int *eof)
210{
211 struct xfs_bmbt_irec rec;
212 int error;
213
214 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof);
215 if (error || *eof)
216 return error;
217
218 *eof = endoff >= rec.br_startoff + rec.br_blockcount;
219 return 0;
220}
221
222/*
223 * Extent tree block counting routines.
224 */
225
226/*
227 * Count leaf blocks given a range of extent records.
228 */
229STATIC void
230xfs_bmap_count_leaves(
231 xfs_ifork_t *ifp,
232 xfs_extnum_t idx,
233 int numrecs,
234 int *count)
235{
236 int b;
237
238 for (b = 0; b < numrecs; b++) {
239 xfs_bmbt_rec_host_t *frp = xfs_iext_get_ext(ifp, idx + b);
240 *count += xfs_bmbt_get_blockcount(frp);
241 }
242}
243
244/*
245 * Count leaf blocks given a range of extent records originally
246 * in btree format.
247 */
248STATIC void
249xfs_bmap_disk_count_leaves(
250 struct xfs_mount *mp,
251 struct xfs_btree_block *block,
252 int numrecs,
253 int *count)
254{
255 int b;
256 xfs_bmbt_rec_t *frp;
257
258 for (b = 1; b <= numrecs; b++) {
259 frp = XFS_BMBT_REC_ADDR(mp, block, b);
260 *count += xfs_bmbt_disk_get_blockcount(frp);
261 }
262}
263
264/*
265 * Recursively walks each level of a btree
Zhi Yong Wu8be11e92013-08-12 03:14:52 +0000266 * to count total fsblocks in use.
Dave Chinner68988112013-08-12 20:49:42 +1000267 */
268STATIC int /* error */
269xfs_bmap_count_tree(
270 xfs_mount_t *mp, /* file system mount point */
271 xfs_trans_t *tp, /* transaction pointer */
272 xfs_ifork_t *ifp, /* inode fork pointer */
273 xfs_fsblock_t blockno, /* file system block number */
274 int levelin, /* level in btree */
275 int *count) /* Count of blocks */
276{
277 int error;
278 xfs_buf_t *bp, *nbp;
279 int level = levelin;
280 __be64 *pp;
281 xfs_fsblock_t bno = blockno;
282 xfs_fsblock_t nextbno;
283 struct xfs_btree_block *block, *nextblock;
284 int numrecs;
285
286 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF,
287 &xfs_bmbt_buf_ops);
288 if (error)
289 return error;
290 *count += 1;
291 block = XFS_BUF_TO_BLOCK(bp);
292
293 if (--level) {
294 /* Not at node above leaves, count this level of nodes */
295 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
296 while (nextbno != NULLFSBLOCK) {
297 error = xfs_btree_read_bufl(mp, tp, nextbno, 0, &nbp,
298 XFS_BMAP_BTREE_REF,
299 &xfs_bmbt_buf_ops);
300 if (error)
301 return error;
302 *count += 1;
303 nextblock = XFS_BUF_TO_BLOCK(nbp);
304 nextbno = be64_to_cpu(nextblock->bb_u.l.bb_rightsib);
305 xfs_trans_brelse(tp, nbp);
306 }
307
308 /* Dive to the next level */
309 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
310 bno = be64_to_cpu(*pp);
311 if (unlikely((error =
312 xfs_bmap_count_tree(mp, tp, ifp, bno, level, count)) < 0)) {
313 xfs_trans_brelse(tp, bp);
314 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
315 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000316 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000317 }
318 xfs_trans_brelse(tp, bp);
319 } else {
320 /* count all level 1 nodes and their leaves */
321 for (;;) {
322 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
323 numrecs = be16_to_cpu(block->bb_numrecs);
324 xfs_bmap_disk_count_leaves(mp, block, numrecs, count);
325 xfs_trans_brelse(tp, bp);
326 if (nextbno == NULLFSBLOCK)
327 break;
328 bno = nextbno;
329 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
330 XFS_BMAP_BTREE_REF,
331 &xfs_bmbt_buf_ops);
332 if (error)
333 return error;
334 *count += 1;
335 block = XFS_BUF_TO_BLOCK(bp);
336 }
337 }
338 return 0;
339}
340
341/*
342 * Count fsblocks of the given fork.
343 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000344static int /* error */
Dave Chinner68988112013-08-12 20:49:42 +1000345xfs_bmap_count_blocks(
346 xfs_trans_t *tp, /* transaction pointer */
347 xfs_inode_t *ip, /* incore inode */
348 int whichfork, /* data or attr fork */
349 int *count) /* out: count of blocks */
350{
351 struct xfs_btree_block *block; /* current btree block */
352 xfs_fsblock_t bno; /* block # of "block" */
353 xfs_ifork_t *ifp; /* fork structure */
354 int level; /* btree level, for checking */
355 xfs_mount_t *mp; /* file system mount structure */
356 __be64 *pp; /* pointer to block address */
357
358 bno = NULLFSBLOCK;
359 mp = ip->i_mount;
360 ifp = XFS_IFORK_PTR(ip, whichfork);
361 if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
Eric Sandeen5d829302016-11-08 12:59:42 +1100362 xfs_bmap_count_leaves(ifp, 0, xfs_iext_count(ifp), count);
Dave Chinner68988112013-08-12 20:49:42 +1000363 return 0;
364 }
365
366 /*
367 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
368 */
369 block = ifp->if_broot;
370 level = be16_to_cpu(block->bb_level);
371 ASSERT(level > 0);
372 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
373 bno = be64_to_cpu(*pp);
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000374 ASSERT(bno != NULLFSBLOCK);
Dave Chinner68988112013-08-12 20:49:42 +1000375 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
376 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
377
378 if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
379 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
380 mp);
Dave Chinner24513372014-06-25 14:58:08 +1000381 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000382 }
383
384 return 0;
385}
386
387/*
388 * returns 1 for success, 0 if we failed to map the extent.
389 */
390STATIC int
391xfs_getbmapx_fix_eof_hole(
392 xfs_inode_t *ip, /* xfs incore inode pointer */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700393 int whichfork,
Dave Chinner68988112013-08-12 20:49:42 +1000394 struct getbmapx *out, /* output structure */
395 int prealloced, /* this is a file with
396 * preallocated data space */
397 __int64_t end, /* last block requested */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700398 xfs_fsblock_t startblock,
399 bool moretocome)
Dave Chinner68988112013-08-12 20:49:42 +1000400{
401 __int64_t fixlen;
402 xfs_mount_t *mp; /* file system mount point */
403 xfs_ifork_t *ifp; /* inode fork pointer */
404 xfs_extnum_t lastx; /* last extent pointer */
405 xfs_fileoff_t fileblock;
406
407 if (startblock == HOLESTARTBLOCK) {
408 mp = ip->i_mount;
409 out->bmv_block = -1;
410 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, XFS_ISIZE(ip)));
411 fixlen -= out->bmv_offset;
412 if (prealloced && out->bmv_offset + out->bmv_length == end) {
413 /* Came to hole at EOF. Trim it. */
414 if (fixlen <= 0)
415 return 0;
416 out->bmv_length = fixlen;
417 }
418 } else {
419 if (startblock == DELAYSTARTBLOCK)
420 out->bmv_block = -2;
421 else
422 out->bmv_block = xfs_fsb_to_db(ip, startblock);
423 fileblock = XFS_BB_TO_FSB(ip->i_mount, out->bmv_offset);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700424 ifp = XFS_IFORK_PTR(ip, whichfork);
425 if (!moretocome &&
426 xfs_iext_bno_to_ext(ifp, fileblock, &lastx) &&
Eric Sandeen5d829302016-11-08 12:59:42 +1100427 (lastx == xfs_iext_count(ifp) - 1))
Dave Chinner68988112013-08-12 20:49:42 +1000428 out->bmv_oflags |= BMV_OF_LAST;
429 }
430
431 return 1;
432}
433
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700434/* Adjust the reported bmap around shared/unshared extent transitions. */
435STATIC int
436xfs_getbmap_adjust_shared(
437 struct xfs_inode *ip,
438 int whichfork,
439 struct xfs_bmbt_irec *map,
440 struct getbmapx *out,
441 struct xfs_bmbt_irec *next_map)
442{
443 struct xfs_mount *mp = ip->i_mount;
444 xfs_agnumber_t agno;
445 xfs_agblock_t agbno;
446 xfs_agblock_t ebno;
447 xfs_extlen_t elen;
448 xfs_extlen_t nlen;
449 int error;
450
451 next_map->br_startblock = NULLFSBLOCK;
452 next_map->br_startoff = NULLFILEOFF;
453 next_map->br_blockcount = 0;
454
455 /* Only written data blocks can be shared. */
456 if (!xfs_is_reflink_inode(ip) || whichfork != XFS_DATA_FORK ||
457 map->br_startblock == DELAYSTARTBLOCK ||
458 map->br_startblock == HOLESTARTBLOCK ||
459 ISUNWRITTEN(map))
460 return 0;
461
462 agno = XFS_FSB_TO_AGNO(mp, map->br_startblock);
463 agbno = XFS_FSB_TO_AGBNO(mp, map->br_startblock);
464 error = xfs_reflink_find_shared(mp, agno, agbno, map->br_blockcount,
465 &ebno, &elen, true);
466 if (error)
467 return error;
468
469 if (ebno == NULLAGBLOCK) {
470 /* No shared blocks at all. */
471 return 0;
472 } else if (agbno == ebno) {
473 /*
474 * Shared extent at (agbno, elen). Shrink the reported
475 * extent length and prepare to move the start of map[i]
476 * to agbno+elen, with the aim of (re)formatting the new
477 * map[i] the next time through the inner loop.
478 */
479 out->bmv_length = XFS_FSB_TO_BB(mp, elen);
480 out->bmv_oflags |= BMV_OF_SHARED;
481 if (elen != map->br_blockcount) {
482 *next_map = *map;
483 next_map->br_startblock += elen;
484 next_map->br_startoff += elen;
485 next_map->br_blockcount -= elen;
486 }
487 map->br_blockcount -= elen;
488 } else {
489 /*
490 * There's an unshared extent (agbno, ebno - agbno)
491 * followed by shared extent at (ebno, elen). Shrink
492 * the reported extent length to cover only the unshared
493 * extent and prepare to move up the start of map[i] to
494 * ebno, with the aim of (re)formatting the new map[i]
495 * the next time through the inner loop.
496 */
497 *next_map = *map;
498 nlen = ebno - agbno;
499 out->bmv_length = XFS_FSB_TO_BB(mp, nlen);
500 next_map->br_startblock += nlen;
501 next_map->br_startoff += nlen;
502 next_map->br_blockcount -= nlen;
503 map->br_blockcount -= nlen;
504 }
505
506 return 0;
507}
508
Dave Chinner68988112013-08-12 20:49:42 +1000509/*
510 * Get inode's extents as described in bmv, and format for output.
511 * Calls formatter to fill the user's buffer until all extents
512 * are mapped, until the passed-in bmv->bmv_count slots have
513 * been filled, or until the formatter short-circuits the loop,
514 * if it is tracking filled-in extents on its own.
515 */
516int /* error code */
517xfs_getbmap(
518 xfs_inode_t *ip,
519 struct getbmapx *bmv, /* user bmap structure */
520 xfs_bmap_format_t formatter, /* format to user */
521 void *arg) /* formatter arg */
522{
523 __int64_t bmvend; /* last block requested */
524 int error = 0; /* return value */
525 __int64_t fixlen; /* length for -1 case */
526 int i; /* extent number */
527 int lock; /* lock state */
528 xfs_bmbt_irec_t *map; /* buffer for user's data */
529 xfs_mount_t *mp; /* file system mount point */
530 int nex; /* # of user extents can do */
Dave Chinner68988112013-08-12 20:49:42 +1000531 int subnex; /* # of bmapi's can do */
532 int nmap; /* number of map entries */
533 struct getbmapx *out; /* output structure */
534 int whichfork; /* data or attr fork */
535 int prealloced; /* this is a file with
536 * preallocated data space */
537 int iflags; /* interface flags */
538 int bmapi_flags; /* flags for xfs_bmapi */
539 int cur_ext = 0;
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700540 struct xfs_bmbt_irec inject_map;
Dave Chinner68988112013-08-12 20:49:42 +1000541
542 mp = ip->i_mount;
543 iflags = bmv->bmv_iflags;
Dave Chinner68988112013-08-12 20:49:42 +1000544
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700545#ifndef DEBUG
546 /* Only allow CoW fork queries if we're debugging. */
547 if (iflags & BMV_IF_COWFORK)
548 return -EINVAL;
549#endif
550 if ((iflags & BMV_IF_ATTRFORK) && (iflags & BMV_IF_COWFORK))
551 return -EINVAL;
552
553 if (iflags & BMV_IF_ATTRFORK)
554 whichfork = XFS_ATTR_FORK;
555 else if (iflags & BMV_IF_COWFORK)
556 whichfork = XFS_COW_FORK;
557 else
558 whichfork = XFS_DATA_FORK;
559
560 switch (whichfork) {
561 case XFS_ATTR_FORK:
Dave Chinner68988112013-08-12 20:49:42 +1000562 if (XFS_IFORK_Q(ip)) {
563 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS &&
564 ip->i_d.di_aformat != XFS_DINODE_FMT_BTREE &&
565 ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +1000566 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000567 } else if (unlikely(
568 ip->i_d.di_aformat != 0 &&
569 ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS)) {
570 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW,
571 ip->i_mount);
Dave Chinner24513372014-06-25 14:58:08 +1000572 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000573 }
574
575 prealloced = 0;
576 fixlen = 1LL << 32;
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700577 break;
578 case XFS_COW_FORK:
579 if (ip->i_cformat != XFS_DINODE_FMT_EXTENTS)
580 return -EINVAL;
581
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700582 if (xfs_get_cowextsz_hint(ip)) {
583 prealloced = 1;
584 fixlen = mp->m_super->s_maxbytes;
585 } else {
586 prealloced = 0;
587 fixlen = XFS_ISIZE(ip);
588 }
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700589 break;
590 default:
Dave Chinner68988112013-08-12 20:49:42 +1000591 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
592 ip->i_d.di_format != XFS_DINODE_FMT_BTREE &&
593 ip->i_d.di_format != XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +1000594 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000595
596 if (xfs_get_extsz_hint(ip) ||
597 ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)){
598 prealloced = 1;
599 fixlen = mp->m_super->s_maxbytes;
600 } else {
601 prealloced = 0;
602 fixlen = XFS_ISIZE(ip);
603 }
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700604 break;
Dave Chinner68988112013-08-12 20:49:42 +1000605 }
606
607 if (bmv->bmv_length == -1) {
608 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, fixlen));
609 bmv->bmv_length =
610 max_t(__int64_t, fixlen - bmv->bmv_offset, 0);
611 } else if (bmv->bmv_length == 0) {
612 bmv->bmv_entries = 0;
613 return 0;
614 } else if (bmv->bmv_length < 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000615 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000616 }
617
618 nex = bmv->bmv_count - 1;
619 if (nex <= 0)
Dave Chinner24513372014-06-25 14:58:08 +1000620 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000621 bmvend = bmv->bmv_offset + bmv->bmv_length;
622
623
624 if (bmv->bmv_count > ULONG_MAX / sizeof(struct getbmapx))
Dave Chinner24513372014-06-25 14:58:08 +1000625 return -ENOMEM;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000626 out = kmem_zalloc_large(bmv->bmv_count * sizeof(struct getbmapx), 0);
627 if (!out)
Dave Chinner24513372014-06-25 14:58:08 +1000628 return -ENOMEM;
Dave Chinner68988112013-08-12 20:49:42 +1000629
630 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700631 switch (whichfork) {
632 case XFS_DATA_FORK:
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800633 if (!(iflags & BMV_IF_DELALLOC) &&
634 (ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_d.di_size)) {
Dave Chinner24513372014-06-25 14:58:08 +1000635 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
Dave Chinner68988112013-08-12 20:49:42 +1000636 if (error)
637 goto out_unlock_iolock;
Dave Chinner68988112013-08-12 20:49:42 +1000638
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800639 /*
640 * Even after flushing the inode, there can still be
641 * delalloc blocks on the inode beyond EOF due to
642 * speculative preallocation. These are not removed
643 * until the release function is called or the inode
644 * is inactivated. Hence we cannot assert here that
645 * ip->i_delayed_blks == 0.
646 */
647 }
648
649 lock = xfs_ilock_data_map_shared(ip);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700650 break;
651 case XFS_COW_FORK:
652 lock = XFS_ILOCK_SHARED;
653 xfs_ilock(ip, lock);
654 break;
655 case XFS_ATTR_FORK:
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800656 lock = xfs_ilock_attr_map_shared(ip);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700657 break;
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800658 }
Dave Chinner68988112013-08-12 20:49:42 +1000659
660 /*
661 * Don't let nex be bigger than the number of extents
662 * we can have assuming alternating holes and real extents.
663 */
664 if (nex > XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1)
665 nex = XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1;
666
667 bmapi_flags = xfs_bmapi_aflag(whichfork);
668 if (!(iflags & BMV_IF_PREALLOC))
669 bmapi_flags |= XFS_BMAPI_IGSTATE;
670
671 /*
672 * Allocate enough space to handle "subnex" maps at a time.
673 */
Dave Chinner24513372014-06-25 14:58:08 +1000674 error = -ENOMEM;
Dave Chinner68988112013-08-12 20:49:42 +1000675 subnex = 16;
676 map = kmem_alloc(subnex * sizeof(*map), KM_MAYFAIL | KM_NOFS);
677 if (!map)
678 goto out_unlock_ilock;
679
680 bmv->bmv_entries = 0;
681
682 if (XFS_IFORK_NEXTENTS(ip, whichfork) == 0 &&
683 (whichfork == XFS_ATTR_FORK || !(iflags & BMV_IF_DELALLOC))) {
684 error = 0;
685 goto out_free_map;
686 }
687
Dave Chinner68988112013-08-12 20:49:42 +1000688 do {
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800689 nmap = (nex> subnex) ? subnex : nex;
Dave Chinner68988112013-08-12 20:49:42 +1000690 error = xfs_bmapi_read(ip, XFS_BB_TO_FSBT(mp, bmv->bmv_offset),
691 XFS_BB_TO_FSB(mp, bmv->bmv_length),
692 map, &nmap, bmapi_flags);
693 if (error)
694 goto out_free_map;
695 ASSERT(nmap <= subnex);
696
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800697 for (i = 0; i < nmap && bmv->bmv_length &&
698 cur_ext < bmv->bmv_count - 1; i++) {
Dave Chinner68988112013-08-12 20:49:42 +1000699 out[cur_ext].bmv_oflags = 0;
700 if (map[i].br_state == XFS_EXT_UNWRITTEN)
701 out[cur_ext].bmv_oflags |= BMV_OF_PREALLOC;
702 else if (map[i].br_startblock == DELAYSTARTBLOCK)
703 out[cur_ext].bmv_oflags |= BMV_OF_DELALLOC;
704 out[cur_ext].bmv_offset =
705 XFS_FSB_TO_BB(mp, map[i].br_startoff);
706 out[cur_ext].bmv_length =
707 XFS_FSB_TO_BB(mp, map[i].br_blockcount);
708 out[cur_ext].bmv_unused1 = 0;
709 out[cur_ext].bmv_unused2 = 0;
710
711 /*
712 * delayed allocation extents that start beyond EOF can
713 * occur due to speculative EOF allocation when the
714 * delalloc extent is larger than the largest freespace
715 * extent at conversion time. These extents cannot be
716 * converted by data writeback, so can exist here even
717 * if we are not supposed to be finding delalloc
718 * extents.
719 */
720 if (map[i].br_startblock == DELAYSTARTBLOCK &&
721 map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
722 ASSERT((iflags & BMV_IF_DELALLOC) != 0);
723
724 if (map[i].br_startblock == HOLESTARTBLOCK &&
725 whichfork == XFS_ATTR_FORK) {
726 /* came to the end of attribute fork */
727 out[cur_ext].bmv_oflags |= BMV_OF_LAST;
728 goto out_free_map;
729 }
730
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700731 /* Is this a shared block? */
732 error = xfs_getbmap_adjust_shared(ip, whichfork,
733 &map[i], &out[cur_ext], &inject_map);
734 if (error)
735 goto out_free_map;
736
737 if (!xfs_getbmapx_fix_eof_hole(ip, whichfork,
738 &out[cur_ext], prealloced, bmvend,
739 map[i].br_startblock,
740 inject_map.br_startblock != NULLFSBLOCK))
Dave Chinner68988112013-08-12 20:49:42 +1000741 goto out_free_map;
742
743 bmv->bmv_offset =
744 out[cur_ext].bmv_offset +
745 out[cur_ext].bmv_length;
746 bmv->bmv_length =
747 max_t(__int64_t, 0, bmvend - bmv->bmv_offset);
748
749 /*
750 * In case we don't want to return the hole,
751 * don't increase cur_ext so that we can reuse
752 * it in the next loop.
753 */
754 if ((iflags & BMV_IF_NO_HOLES) &&
755 map[i].br_startblock == HOLESTARTBLOCK) {
756 memset(&out[cur_ext], 0, sizeof(out[cur_ext]));
757 continue;
758 }
759
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800760 /*
761 * In order to report shared extents accurately,
762 * we report each distinct shared/unshared part
763 * of a single bmbt record using multiple bmap
764 * extents. To make that happen, we iterate the
765 * same map array item multiple times, each
766 * time trimming out the subextent that we just
767 * reported.
768 *
769 * Because of this, we must check the out array
770 * index (cur_ext) directly against bmv_count-1
771 * to avoid overflows.
772 */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700773 if (inject_map.br_startblock != NULLFSBLOCK) {
774 map[i] = inject_map;
775 i--;
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800776 }
Dave Chinner68988112013-08-12 20:49:42 +1000777 bmv->bmv_entries++;
778 cur_ext++;
779 }
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800780 } while (nmap && bmv->bmv_length && cur_ext < bmv->bmv_count - 1);
Dave Chinner68988112013-08-12 20:49:42 +1000781
782 out_free_map:
783 kmem_free(map);
784 out_unlock_ilock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -0800785 xfs_iunlock(ip, lock);
Dave Chinner68988112013-08-12 20:49:42 +1000786 out_unlock_iolock:
787 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
788
789 for (i = 0; i < cur_ext; i++) {
790 int full = 0; /* user array is full */
791
792 /* format results & advance arg */
793 error = formatter(&arg, &out[i], &full);
794 if (error || full)
795 break;
796 }
797
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000798 kmem_free(out);
Dave Chinner68988112013-08-12 20:49:42 +1000799 return error;
800}
801
802/*
803 * dead simple method of punching delalyed allocation blocks from a range in
804 * the inode. Walks a block at a time so will be slow, but is only executed in
Zhi Yong Wuad4809b2013-08-12 03:14:55 +0000805 * rare error cases so the overhead is not critical. This will always punch out
Dave Chinner68988112013-08-12 20:49:42 +1000806 * both the start and end blocks, even if the ranges only partially overlap
807 * them, so it is up to the caller to ensure that partial blocks are not
808 * passed in.
809 */
810int
811xfs_bmap_punch_delalloc_range(
812 struct xfs_inode *ip,
813 xfs_fileoff_t start_fsb,
814 xfs_fileoff_t length)
815{
816 xfs_fileoff_t remaining = length;
817 int error = 0;
818
819 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
820
821 do {
822 int done;
823 xfs_bmbt_irec_t imap;
824 int nimaps = 1;
825 xfs_fsblock_t firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000826 struct xfs_defer_ops dfops;
Dave Chinner68988112013-08-12 20:49:42 +1000827
828 /*
829 * Map the range first and check that it is a delalloc extent
830 * before trying to unmap the range. Otherwise we will be
831 * trying to remove a real extent (which requires a
832 * transaction) or a hole, which is probably a bad idea...
833 */
834 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps,
835 XFS_BMAPI_ENTIRE);
836
837 if (error) {
838 /* something screwed, just bail */
839 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
840 xfs_alert(ip->i_mount,
841 "Failed delalloc mapping lookup ino %lld fsb %lld.",
842 ip->i_ino, start_fsb);
843 }
844 break;
845 }
846 if (!nimaps) {
847 /* nothing there */
848 goto next_block;
849 }
850 if (imap.br_startblock != DELAYSTARTBLOCK) {
851 /* been converted, ignore */
852 goto next_block;
853 }
854 WARN_ON(imap.br_blockcount == 0);
855
856 /*
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000857 * Note: while we initialise the firstblock/dfops pair, they
Dave Chinner68988112013-08-12 20:49:42 +1000858 * should never be used because blocks should never be
859 * allocated or freed for a delalloc extent and hence we need
860 * don't cancel or finish them after the xfs_bunmapi() call.
861 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000862 xfs_defer_init(&dfops, &firstblock);
Dave Chinner68988112013-08-12 20:49:42 +1000863 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000864 &dfops, &done);
Dave Chinner68988112013-08-12 20:49:42 +1000865 if (error)
866 break;
867
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000868 ASSERT(!xfs_defer_has_unfinished_work(&dfops));
Dave Chinner68988112013-08-12 20:49:42 +1000869next_block:
870 start_fsb++;
871 remaining--;
872 } while(remaining > 0);
873
874 return error;
875}
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000876
877/*
878 * Test whether it is appropriate to check an inode for and free post EOF
879 * blocks. The 'force' parameter determines whether we should also consider
880 * regular files that are marked preallocated or append-only.
881 */
882bool
883xfs_can_free_eofblocks(struct xfs_inode *ip, bool force)
884{
885 /* prealloc/delalloc exists only on regular files */
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100886 if (!S_ISREG(VFS_I(ip)->i_mode))
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000887 return false;
888
889 /*
890 * Zero sized files with no cached pages and delalloc blocks will not
891 * have speculative prealloc/delalloc blocks to remove.
892 */
893 if (VFS_I(ip)->i_size == 0 &&
Dave Chinner2667c6f2014-08-04 13:23:15 +1000894 VFS_I(ip)->i_mapping->nrpages == 0 &&
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000895 ip->i_delayed_blks == 0)
896 return false;
897
898 /* If we haven't read in the extent list, then don't do it now. */
899 if (!(ip->i_df.if_flags & XFS_IFEXTENTS))
900 return false;
901
902 /*
903 * Do not free real preallocated or append-only files unless the file
904 * has delalloc blocks and we are forced to remove them.
905 */
906 if (ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND))
907 if (!force || ip->i_delayed_blks == 0)
908 return false;
909
910 return true;
911}
912
913/*
914 * This is called by xfs_inactive to free any blocks beyond eof
915 * when the link count isn't zero and by xfs_dm_punch_hole() when
916 * punching a hole to EOF.
917 */
918int
919xfs_free_eofblocks(
Brian Fostera36b9262017-01-27 23:22:55 -0800920 struct xfs_inode *ip)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000921{
Brian Fostera36b9262017-01-27 23:22:55 -0800922 struct xfs_trans *tp;
923 int error;
924 xfs_fileoff_t end_fsb;
925 xfs_fileoff_t last_fsb;
926 xfs_filblks_t map_len;
927 int nimaps;
928 struct xfs_bmbt_irec imap;
929 struct xfs_mount *mp = ip->i_mount;
930
931 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000932
933 /*
934 * Figure out if there are any blocks beyond the end
935 * of the file. If not, then there is nothing to do.
936 */
937 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
938 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
939 if (last_fsb <= end_fsb)
940 return 0;
941 map_len = last_fsb - end_fsb;
942
943 nimaps = 1;
944 xfs_ilock(ip, XFS_ILOCK_SHARED);
945 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
946 xfs_iunlock(ip, XFS_ILOCK_SHARED);
947
Brian Fostera36b9262017-01-27 23:22:55 -0800948 /*
949 * If there are blocks after the end of file, truncate the file to its
950 * current size to free them up.
951 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000952 if (!error && (nimaps != 0) &&
953 (imap.br_startblock != HOLESTARTBLOCK ||
954 ip->i_delayed_blks)) {
955 /*
956 * Attach the dquots to the inode up front.
957 */
958 error = xfs_qm_dqattach(ip, 0);
959 if (error)
960 return error;
961
Christoph Hellwig253f4912016-04-06 09:19:55 +1000962 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0,
963 &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000964 if (error) {
965 ASSERT(XFS_FORCED_SHUTDOWN(mp));
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000966 return error;
967 }
968
969 xfs_ilock(ip, XFS_ILOCK_EXCL);
970 xfs_trans_ijoin(tp, ip, 0);
971
972 /*
973 * Do not update the on-disk file size. If we update the
974 * on-disk file size and then the system crashes before the
975 * contents of the file are flushed to disk then the files
976 * may be full of holes (ie NULL files bug).
977 */
978 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
979 XFS_ISIZE(ip));
980 if (error) {
981 /*
982 * If we get an error at this point we simply don't
983 * bother truncating the file.
984 */
Christoph Hellwig4906e212015-06-04 13:47:56 +1000985 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000986 } else {
Christoph Hellwig70393312015-06-04 13:48:08 +1000987 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000988 if (!error)
989 xfs_inode_clear_eofblocks_tag(ip);
990 }
991
992 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000993 }
994 return error;
995}
996
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700997int
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000998xfs_alloc_file_space(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700999 struct xfs_inode *ip,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001000 xfs_off_t offset,
1001 xfs_off_t len,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001002 int alloc_type)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001003{
1004 xfs_mount_t *mp = ip->i_mount;
1005 xfs_off_t count;
1006 xfs_filblks_t allocated_fsb;
1007 xfs_filblks_t allocatesize_fsb;
1008 xfs_extlen_t extsz, temp;
1009 xfs_fileoff_t startoffset_fsb;
1010 xfs_fsblock_t firstfsb;
1011 int nimaps;
1012 int quota_flag;
1013 int rt;
1014 xfs_trans_t *tp;
1015 xfs_bmbt_irec_t imaps[1], *imapp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001016 struct xfs_defer_ops dfops;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001017 uint qblocks, resblks, resrtextents;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001018 int error;
1019
1020 trace_xfs_alloc_file_space(ip);
1021
1022 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001023 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001024
1025 error = xfs_qm_dqattach(ip, 0);
1026 if (error)
1027 return error;
1028
1029 if (len <= 0)
Dave Chinner24513372014-06-25 14:58:08 +10001030 return -EINVAL;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001031
1032 rt = XFS_IS_REALTIME_INODE(ip);
1033 extsz = xfs_get_extsz_hint(ip);
1034
1035 count = len;
1036 imapp = &imaps[0];
1037 nimaps = 1;
1038 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1039 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1040
1041 /*
1042 * Allocate file space until done or until there is an error
1043 */
1044 while (allocatesize_fsb && !error) {
1045 xfs_fileoff_t s, e;
1046
1047 /*
1048 * Determine space reservations for data/realtime.
1049 */
1050 if (unlikely(extsz)) {
1051 s = startoffset_fsb;
1052 do_div(s, extsz);
1053 s *= extsz;
1054 e = startoffset_fsb + allocatesize_fsb;
1055 if ((temp = do_mod(startoffset_fsb, extsz)))
1056 e += temp;
1057 if ((temp = do_mod(e, extsz)))
1058 e += extsz - temp;
1059 } else {
1060 s = 0;
1061 e = allocatesize_fsb;
1062 }
1063
1064 /*
1065 * The transaction reservation is limited to a 32-bit block
1066 * count, hence we need to limit the number of blocks we are
1067 * trying to reserve to avoid an overflow. We can't allocate
1068 * more than @nimaps extents, and an extent is limited on disk
1069 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1070 */
1071 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
1072 if (unlikely(rt)) {
1073 resrtextents = qblocks = resblks;
1074 resrtextents /= mp->m_sb.sb_rextsize;
1075 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1076 quota_flag = XFS_QMOPT_RES_RTBLKS;
1077 } else {
1078 resrtextents = 0;
1079 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
1080 quota_flag = XFS_QMOPT_RES_REGBLKS;
1081 }
1082
1083 /*
1084 * Allocate and setup the transaction.
1085 */
Christoph Hellwig253f4912016-04-06 09:19:55 +10001086 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1087 resrtextents, 0, &tp);
1088
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001089 /*
1090 * Check for running out of space
1091 */
1092 if (error) {
1093 /*
1094 * Free the transaction structure.
1095 */
Dave Chinner24513372014-06-25 14:58:08 +10001096 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001097 break;
1098 }
1099 xfs_ilock(ip, XFS_ILOCK_EXCL);
1100 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1101 0, quota_flag);
1102 if (error)
1103 goto error1;
1104
1105 xfs_trans_ijoin(tp, ip, 0);
1106
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001107 xfs_defer_init(&dfops, &firstfsb);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001108 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1109 allocatesize_fsb, alloc_type, &firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001110 resblks, imapp, &nimaps, &dfops);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001111 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001112 goto error0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001113
1114 /*
1115 * Complete the transaction
1116 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001117 error = xfs_defer_finish(&tp, &dfops, NULL);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001118 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001119 goto error0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001120
Christoph Hellwig70393312015-06-04 13:48:08 +10001121 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001122 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001123 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001124 break;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001125
1126 allocated_fsb = imapp->br_blockcount;
1127
1128 if (nimaps == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001129 error = -ENOSPC;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001130 break;
1131 }
1132
1133 startoffset_fsb += allocated_fsb;
1134 allocatesize_fsb -= allocated_fsb;
1135 }
1136
1137 return error;
1138
1139error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001140 xfs_defer_cancel(&dfops);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001141 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
1142
1143error1: /* Just cancel transaction */
Christoph Hellwig4906e212015-06-04 13:47:56 +10001144 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001145 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1146 return error;
1147}
1148
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001149static int
1150xfs_unmap_extent(
1151 struct xfs_inode *ip,
1152 xfs_fileoff_t startoffset_fsb,
1153 xfs_filblks_t len_fsb,
1154 int *done)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001155{
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001156 struct xfs_mount *mp = ip->i_mount;
1157 struct xfs_trans *tp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001158 struct xfs_defer_ops dfops;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001159 xfs_fsblock_t firstfsb;
1160 uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1161 int error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001162
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001163 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1164 if (error) {
1165 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1166 return error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001167 }
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001168
1169 xfs_ilock(ip, XFS_ILOCK_EXCL);
1170 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, ip->i_gdquot,
1171 ip->i_pdquot, resblks, 0, XFS_QMOPT_RES_REGBLKS);
1172 if (error)
1173 goto out_trans_cancel;
1174
1175 xfs_trans_ijoin(tp, ip, 0);
1176
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001177 xfs_defer_init(&dfops, &firstfsb);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001178 error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, &firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001179 &dfops, done);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001180 if (error)
1181 goto out_bmap_cancel;
1182
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001183 error = xfs_defer_finish(&tp, &dfops, ip);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001184 if (error)
1185 goto out_bmap_cancel;
1186
1187 error = xfs_trans_commit(tp);
1188out_unlock:
1189 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001190 return error;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001191
1192out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001193 xfs_defer_cancel(&dfops);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001194out_trans_cancel:
1195 xfs_trans_cancel(tp);
1196 goto out_unlock;
1197}
1198
1199static int
1200xfs_adjust_extent_unmap_boundaries(
1201 struct xfs_inode *ip,
1202 xfs_fileoff_t *startoffset_fsb,
1203 xfs_fileoff_t *endoffset_fsb)
1204{
1205 struct xfs_mount *mp = ip->i_mount;
1206 struct xfs_bmbt_irec imap;
1207 int nimap, error;
1208 xfs_extlen_t mod = 0;
1209
1210 nimap = 1;
1211 error = xfs_bmapi_read(ip, *startoffset_fsb, 1, &imap, &nimap, 0);
1212 if (error)
1213 return error;
1214
1215 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1216 xfs_daddr_t block;
1217
1218 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1219 block = imap.br_startblock;
1220 mod = do_div(block, mp->m_sb.sb_rextsize);
1221 if (mod)
1222 *startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1223 }
1224
1225 nimap = 1;
1226 error = xfs_bmapi_read(ip, *endoffset_fsb - 1, 1, &imap, &nimap, 0);
1227 if (error)
1228 return error;
1229
1230 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1231 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1232 mod++;
1233 if (mod && mod != mp->m_sb.sb_rextsize)
1234 *endoffset_fsb -= mod;
1235 }
1236
1237 return 0;
1238}
1239
1240static int
1241xfs_flush_unmap_range(
1242 struct xfs_inode *ip,
1243 xfs_off_t offset,
1244 xfs_off_t len)
1245{
1246 struct xfs_mount *mp = ip->i_mount;
1247 struct inode *inode = VFS_I(ip);
1248 xfs_off_t rounding, start, end;
1249 int error;
1250
1251 /* wait for the completion of any pending DIOs */
1252 inode_dio_wait(inode);
1253
1254 rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_SIZE);
1255 start = round_down(offset, rounding);
1256 end = round_up(offset + len, rounding) - 1;
1257
1258 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
1259 if (error)
1260 return error;
1261 truncate_pagecache_range(inode, start, end);
1262 return 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001263}
1264
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001265int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001266xfs_free_file_space(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001267 struct xfs_inode *ip,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001268 xfs_off_t offset,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001269 xfs_off_t len)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001270{
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001271 struct xfs_mount *mp = ip->i_mount;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001272 xfs_fileoff_t startoffset_fsb;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001273 xfs_fileoff_t endoffset_fsb;
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001274 int done = 0, error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001275
1276 trace_xfs_free_file_space(ip);
1277
1278 error = xfs_qm_dqattach(ip, 0);
1279 if (error)
1280 return error;
1281
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001282 if (len <= 0) /* if nothing being freed */
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001283 return 0;
1284
1285 error = xfs_flush_unmap_range(ip, offset, len);
1286 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001287 return error;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001288
1289 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001290 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
1291
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001292 /*
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001293 * Need to zero the stuff we're not freeing, on disk. If it's a RT file
1294 * and we can't use unwritten extents then we actually need to ensure
1295 * to zero the whole extent, otherwise we just need to take of block
1296 * boundaries, and xfs_bunmapi will handle the rest.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001297 */
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001298 if (XFS_IS_REALTIME_INODE(ip) &&
1299 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
1300 error = xfs_adjust_extent_unmap_boundaries(ip, &startoffset_fsb,
1301 &endoffset_fsb);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001302 if (error)
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001303 return error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001304 }
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001305
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001306 if (endoffset_fsb > startoffset_fsb) {
1307 while (!done) {
1308 error = xfs_unmap_extent(ip, startoffset_fsb,
1309 endoffset_fsb - startoffset_fsb, &done);
1310 if (error)
1311 return error;
1312 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001313 }
1314
1315 /*
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001316 * Now that we've unmap all full blocks we'll have to zero out any
1317 * partial block at the beginning and/or end. xfs_zero_range is
1318 * smart enough to skip any holes, including those we just created.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001319 */
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001320 return xfs_zero_range(ip, offset, len, NULL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001321}
1322
Brian Foster5d11fb42014-10-30 10:35:11 +11001323/*
1324 * Preallocate and zero a range of a file. This mechanism has the allocation
1325 * semantics of fallocate and in addition converts data in the range to zeroes.
1326 */
Christoph Hellwig865e9442013-10-12 00:55:08 -07001327int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001328xfs_zero_file_space(
1329 struct xfs_inode *ip,
1330 xfs_off_t offset,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001331 xfs_off_t len)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001332{
1333 struct xfs_mount *mp = ip->i_mount;
Brian Foster5d11fb42014-10-30 10:35:11 +11001334 uint blksize;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001335 int error;
1336
Dave Chinner897b73b2014-04-14 18:15:11 +10001337 trace_xfs_zero_file_space(ip);
1338
Brian Foster5d11fb42014-10-30 10:35:11 +11001339 blksize = 1 << mp->m_sb.sb_blocklog;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001340
1341 /*
Brian Foster5d11fb42014-10-30 10:35:11 +11001342 * Punch a hole and prealloc the range. We use hole punch rather than
1343 * unwritten extent conversion for two reasons:
1344 *
1345 * 1.) Hole punch handles partial block zeroing for us.
1346 *
1347 * 2.) If prealloc returns ENOSPC, the file range is still zero-valued
1348 * by virtue of the hole punch.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001349 */
Brian Foster5d11fb42014-10-30 10:35:11 +11001350 error = xfs_free_file_space(ip, offset, len);
1351 if (error)
1352 goto out;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001353
Brian Foster5d11fb42014-10-30 10:35:11 +11001354 error = xfs_alloc_file_space(ip, round_down(offset, blksize),
1355 round_up(offset + len, blksize) -
1356 round_down(offset, blksize),
1357 XFS_BMAPI_PREALLOC);
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001358out:
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001359 return error;
1360
1361}
1362
1363/*
Namjae Jeona904b1c2015-03-25 15:08:56 +11001364 * @next_fsb will keep track of the extent currently undergoing shift.
1365 * @stop_fsb will keep track of the extent at which we have to stop.
1366 * If we are shifting left, we will start with block (offset + len) and
1367 * shift each extent till last extent.
1368 * If we are shifting right, we will start with last extent inside file space
1369 * and continue until we reach the block corresponding to offset.
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001370 */
kbuild test robot72c1a732015-04-13 11:25:04 +10001371static int
Namjae Jeona904b1c2015-03-25 15:08:56 +11001372xfs_shift_file_space(
1373 struct xfs_inode *ip,
1374 xfs_off_t offset,
1375 xfs_off_t len,
1376 enum shift_direction direction)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001377{
1378 int done = 0;
1379 struct xfs_mount *mp = ip->i_mount;
1380 struct xfs_trans *tp;
1381 int error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001382 struct xfs_defer_ops dfops;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001383 xfs_fsblock_t first_block;
Namjae Jeona904b1c2015-03-25 15:08:56 +11001384 xfs_fileoff_t stop_fsb;
Brian Foster2c845f52014-09-23 15:37:09 +10001385 xfs_fileoff_t next_fsb;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001386 xfs_fileoff_t shift_fsb;
1387
Namjae Jeona904b1c2015-03-25 15:08:56 +11001388 ASSERT(direction == SHIFT_LEFT || direction == SHIFT_RIGHT);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001389
Namjae Jeona904b1c2015-03-25 15:08:56 +11001390 if (direction == SHIFT_LEFT) {
1391 next_fsb = XFS_B_TO_FSB(mp, offset + len);
1392 stop_fsb = XFS_B_TO_FSB(mp, VFS_I(ip)->i_size);
1393 } else {
1394 /*
1395 * If right shift, delegate the work of initialization of
1396 * next_fsb to xfs_bmap_shift_extent as it has ilock held.
1397 */
1398 next_fsb = NULLFSBLOCK;
1399 stop_fsb = XFS_B_TO_FSB(mp, offset);
1400 }
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001401
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001402 shift_fsb = XFS_B_TO_FSB(mp, len);
1403
Brian Fosterf71721d2014-09-23 15:39:05 +10001404 /*
1405 * Trim eofblocks to avoid shifting uninitialized post-eof preallocation
1406 * into the accessible region of the file.
1407 */
Brian Foster41b9d722014-09-02 12:12:53 +10001408 if (xfs_can_free_eofblocks(ip, true)) {
Brian Fostera36b9262017-01-27 23:22:55 -08001409 error = xfs_free_eofblocks(ip);
Brian Foster41b9d722014-09-02 12:12:53 +10001410 if (error)
1411 return error;
1412 }
Dave Chinner1669a8c2014-09-02 12:12:53 +10001413
Brian Fosterf71721d2014-09-23 15:39:05 +10001414 /*
1415 * Writeback and invalidate cache for the remainder of the file as we're
Namjae Jeona904b1c2015-03-25 15:08:56 +11001416 * about to shift down every extent from offset to EOF.
Brian Fosterf71721d2014-09-23 15:39:05 +10001417 */
1418 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
Namjae Jeona904b1c2015-03-25 15:08:56 +11001419 offset, -1);
Brian Fosterf71721d2014-09-23 15:39:05 +10001420 if (error)
1421 return error;
1422 error = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001423 offset >> PAGE_SHIFT, -1);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001424 if (error)
1425 return error;
1426
Namjae Jeona904b1c2015-03-25 15:08:56 +11001427 /*
1428 * The extent shiting code works on extent granularity. So, if
1429 * stop_fsb is not the starting block of extent, we need to split
1430 * the extent at stop_fsb.
1431 */
1432 if (direction == SHIFT_RIGHT) {
1433 error = xfs_bmap_split_extent(ip, stop_fsb);
1434 if (error)
1435 return error;
1436 }
1437
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001438 while (!error && !done) {
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001439 /*
1440 * We would need to reserve permanent block for transaction.
1441 * This will come into picture when after shifting extent into
1442 * hole we found that adjacent extents can be merged which
1443 * may lead to freeing of a block during record update.
1444 */
Christoph Hellwig253f4912016-04-06 09:19:55 +10001445 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write,
1446 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp);
1447 if (error)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001448 break;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001449
1450 xfs_ilock(ip, XFS_ILOCK_EXCL);
1451 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot,
1452 ip->i_gdquot, ip->i_pdquot,
1453 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0,
1454 XFS_QMOPT_RES_REGBLKS);
1455 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001456 goto out_trans_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001457
Namjae Jeona904b1c2015-03-25 15:08:56 +11001458 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001459
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001460 xfs_defer_init(&dfops, &first_block);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001461
1462 /*
1463 * We are using the write transaction in which max 2 bmbt
1464 * updates are allowed
1465 */
Namjae Jeona904b1c2015-03-25 15:08:56 +11001466 error = xfs_bmap_shift_extents(tp, ip, &next_fsb, shift_fsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001467 &done, stop_fsb, &first_block, &dfops,
Namjae Jeona904b1c2015-03-25 15:08:56 +11001468 direction, XFS_BMAP_MAX_SHIFT_EXTENTS);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001469 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001470 goto out_bmap_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001471
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001472 error = xfs_defer_finish(&tp, &dfops, NULL);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001473 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001474 goto out_bmap_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001475
Christoph Hellwig70393312015-06-04 13:48:08 +10001476 error = xfs_trans_commit(tp);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001477 }
1478
1479 return error;
1480
Brian Fosterd4a97a02015-08-19 10:01:40 +10001481out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001482 xfs_defer_cancel(&dfops);
Brian Fosterd4a97a02015-08-19 10:01:40 +10001483out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001484 xfs_trans_cancel(tp);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001485 return error;
1486}
1487
1488/*
Namjae Jeona904b1c2015-03-25 15:08:56 +11001489 * xfs_collapse_file_space()
1490 * This routine frees disk space and shift extent for the given file.
1491 * The first thing we do is to free data blocks in the specified range
1492 * by calling xfs_free_file_space(). It would also sync dirty data
1493 * and invalidate page cache over the region on which collapse range
1494 * is working. And Shift extent records to the left to cover a hole.
1495 * RETURNS:
1496 * 0 on success
1497 * errno on error
1498 *
1499 */
1500int
1501xfs_collapse_file_space(
1502 struct xfs_inode *ip,
1503 xfs_off_t offset,
1504 xfs_off_t len)
1505{
1506 int error;
1507
1508 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1509 trace_xfs_collapse_file_space(ip);
1510
1511 error = xfs_free_file_space(ip, offset, len);
1512 if (error)
1513 return error;
1514
1515 return xfs_shift_file_space(ip, offset, len, SHIFT_LEFT);
1516}
1517
1518/*
1519 * xfs_insert_file_space()
1520 * This routine create hole space by shifting extents for the given file.
1521 * The first thing we do is to sync dirty data and invalidate page cache
1522 * over the region on which insert range is working. And split an extent
1523 * to two extents at given offset by calling xfs_bmap_split_extent.
1524 * And shift all extent records which are laying between [offset,
1525 * last allocated extent] to the right to reserve hole range.
1526 * RETURNS:
1527 * 0 on success
1528 * errno on error
1529 */
1530int
1531xfs_insert_file_space(
1532 struct xfs_inode *ip,
1533 loff_t offset,
1534 loff_t len)
1535{
1536 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1537 trace_xfs_insert_file_space(ip);
1538
1539 return xfs_shift_file_space(ip, offset, len, SHIFT_RIGHT);
1540}
1541
1542/*
Dave Chinnera133d952013-08-12 20:49:48 +10001543 * We need to check that the format of the data fork in the temporary inode is
1544 * valid for the target inode before doing the swap. This is not a problem with
1545 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
1546 * data fork depending on the space the attribute fork is taking so we can get
1547 * invalid formats on the target inode.
1548 *
1549 * E.g. target has space for 7 extents in extent format, temp inode only has
1550 * space for 6. If we defragment down to 7 extents, then the tmp format is a
1551 * btree, but when swapped it needs to be in extent format. Hence we can't just
1552 * blindly swap data forks on attr2 filesystems.
1553 *
1554 * Note that we check the swap in both directions so that we don't end up with
1555 * a corrupt temporary inode, either.
1556 *
1557 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
1558 * inode will prevent this situation from occurring, so all we do here is
1559 * reject and log the attempt. basically we are putting the responsibility on
1560 * userspace to get this right.
1561 */
1562static int
1563xfs_swap_extents_check_format(
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001564 struct xfs_inode *ip, /* target inode */
1565 struct xfs_inode *tip) /* tmp inode */
Dave Chinnera133d952013-08-12 20:49:48 +10001566{
1567
1568 /* Should never get a local format */
1569 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
1570 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +10001571 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001572
1573 /*
1574 * if the target inode has less extents that then temporary inode then
1575 * why did userspace call us?
1576 */
1577 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
Dave Chinner24513372014-06-25 14:58:08 +10001578 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001579
1580 /*
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001581 * If we have to use the (expensive) rmap swap method, we can
1582 * handle any number of extents and any format.
1583 */
1584 if (xfs_sb_version_hasrmapbt(&ip->i_mount->m_sb))
1585 return 0;
1586
1587 /*
Dave Chinnera133d952013-08-12 20:49:48 +10001588 * if the target inode is in extent form and the temp inode is in btree
1589 * form then we will end up with the target inode in the wrong format
1590 * as we already know there are less extents in the temp inode.
1591 */
1592 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1593 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
Dave Chinner24513372014-06-25 14:58:08 +10001594 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001595
1596 /* Check temp in extent form to max in target */
1597 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1598 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
1599 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001600 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001601
1602 /* Check target in extent form to max in temp */
1603 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1604 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
1605 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001606 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001607
1608 /*
1609 * If we are in a btree format, check that the temp root block will fit
1610 * in the target and that it has enough extents to be in btree format
1611 * in the target.
1612 *
1613 * Note that we have to be careful to allow btree->extent conversions
1614 * (a common defrag case) which will occur when the temp inode is in
1615 * extent format...
1616 */
1617 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1618 if (XFS_IFORK_BOFF(ip) &&
1619 XFS_BMAP_BMDR_SPACE(tip->i_df.if_broot) > XFS_IFORK_BOFF(ip))
Dave Chinner24513372014-06-25 14:58:08 +10001620 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001621 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
1622 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001623 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001624 }
1625
1626 /* Reciprocal target->temp btree format checks */
1627 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1628 if (XFS_IFORK_BOFF(tip) &&
1629 XFS_BMAP_BMDR_SPACE(ip->i_df.if_broot) > XFS_IFORK_BOFF(tip))
Dave Chinner24513372014-06-25 14:58:08 +10001630 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001631 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
1632 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001633 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001634 }
1635
1636 return 0;
1637}
1638
Dave Chinner7abbb8f2014-09-23 16:20:11 +10001639static int
Dave Chinner4ef897a2014-08-04 13:44:08 +10001640xfs_swap_extent_flush(
1641 struct xfs_inode *ip)
1642{
1643 int error;
1644
1645 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1646 if (error)
1647 return error;
1648 truncate_pagecache_range(VFS_I(ip), 0, -1);
1649
1650 /* Verify O_DIRECT for ftmp */
1651 if (VFS_I(ip)->i_mapping->nrpages)
1652 return -EINVAL;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001653 return 0;
1654}
1655
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001656/*
1657 * Move extents from one file to another, when rmap is enabled.
1658 */
1659STATIC int
1660xfs_swap_extent_rmap(
1661 struct xfs_trans **tpp,
1662 struct xfs_inode *ip,
1663 struct xfs_inode *tip)
1664{
1665 struct xfs_bmbt_irec irec;
1666 struct xfs_bmbt_irec uirec;
1667 struct xfs_bmbt_irec tirec;
1668 xfs_fileoff_t offset_fsb;
1669 xfs_fileoff_t end_fsb;
1670 xfs_filblks_t count_fsb;
1671 xfs_fsblock_t firstfsb;
1672 struct xfs_defer_ops dfops;
1673 int error;
1674 xfs_filblks_t ilen;
1675 xfs_filblks_t rlen;
1676 int nimaps;
1677 __uint64_t tip_flags2;
1678
1679 /*
1680 * If the source file has shared blocks, we must flag the donor
1681 * file as having shared blocks so that we get the shared-block
1682 * rmap functions when we go to fix up the rmaps. The flags
1683 * will be switch for reals later.
1684 */
1685 tip_flags2 = tip->i_d.di_flags2;
1686 if (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK)
1687 tip->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
1688
1689 offset_fsb = 0;
1690 end_fsb = XFS_B_TO_FSB(ip->i_mount, i_size_read(VFS_I(ip)));
1691 count_fsb = (xfs_filblks_t)(end_fsb - offset_fsb);
1692
1693 while (count_fsb) {
1694 /* Read extent from the donor file */
1695 nimaps = 1;
1696 error = xfs_bmapi_read(tip, offset_fsb, count_fsb, &tirec,
1697 &nimaps, 0);
1698 if (error)
1699 goto out;
1700 ASSERT(nimaps == 1);
1701 ASSERT(tirec.br_startblock != DELAYSTARTBLOCK);
1702
1703 trace_xfs_swap_extent_rmap_remap(tip, &tirec);
1704 ilen = tirec.br_blockcount;
1705
1706 /* Unmap the old blocks in the source file. */
1707 while (tirec.br_blockcount) {
1708 xfs_defer_init(&dfops, &firstfsb);
1709 trace_xfs_swap_extent_rmap_remap_piece(tip, &tirec);
1710
1711 /* Read extent from the source file */
1712 nimaps = 1;
1713 error = xfs_bmapi_read(ip, tirec.br_startoff,
1714 tirec.br_blockcount, &irec,
1715 &nimaps, 0);
1716 if (error)
1717 goto out_defer;
1718 ASSERT(nimaps == 1);
1719 ASSERT(tirec.br_startoff == irec.br_startoff);
1720 trace_xfs_swap_extent_rmap_remap_piece(ip, &irec);
1721
1722 /* Trim the extent. */
1723 uirec = tirec;
1724 uirec.br_blockcount = rlen = min_t(xfs_filblks_t,
1725 tirec.br_blockcount,
1726 irec.br_blockcount);
1727 trace_xfs_swap_extent_rmap_remap_piece(tip, &uirec);
1728
1729 /* Remove the mapping from the donor file. */
1730 error = xfs_bmap_unmap_extent((*tpp)->t_mountp, &dfops,
1731 tip, &uirec);
1732 if (error)
1733 goto out_defer;
1734
1735 /* Remove the mapping from the source file. */
1736 error = xfs_bmap_unmap_extent((*tpp)->t_mountp, &dfops,
1737 ip, &irec);
1738 if (error)
1739 goto out_defer;
1740
1741 /* Map the donor file's blocks into the source file. */
1742 error = xfs_bmap_map_extent((*tpp)->t_mountp, &dfops,
1743 ip, &uirec);
1744 if (error)
1745 goto out_defer;
1746
1747 /* Map the source file's blocks into the donor file. */
1748 error = xfs_bmap_map_extent((*tpp)->t_mountp, &dfops,
1749 tip, &irec);
1750 if (error)
1751 goto out_defer;
1752
1753 error = xfs_defer_finish(tpp, &dfops, ip);
1754 if (error)
1755 goto out_defer;
1756
1757 tirec.br_startoff += rlen;
1758 if (tirec.br_startblock != HOLESTARTBLOCK &&
1759 tirec.br_startblock != DELAYSTARTBLOCK)
1760 tirec.br_startblock += rlen;
1761 tirec.br_blockcount -= rlen;
1762 }
1763
1764 /* Roll on... */
1765 count_fsb -= ilen;
1766 offset_fsb += ilen;
1767 }
1768
1769 tip->i_d.di_flags2 = tip_flags2;
1770 return 0;
1771
1772out_defer:
1773 xfs_defer_cancel(&dfops);
1774out:
1775 trace_xfs_swap_extent_rmap_error(ip, error, _RET_IP_);
1776 tip->i_d.di_flags2 = tip_flags2;
1777 return error;
1778}
1779
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001780/* Swap the extents of two files by swapping data forks. */
1781STATIC int
1782xfs_swap_extent_forks(
1783 struct xfs_trans *tp,
1784 struct xfs_inode *ip,
1785 struct xfs_inode *tip,
1786 int *src_log_flags,
1787 int *target_log_flags)
1788{
1789 struct xfs_ifork tempifp, *ifp, *tifp;
1790 int aforkblks = 0;
1791 int taforkblks = 0;
Eric Sandeen4dfce572016-11-08 12:55:18 +11001792 xfs_extnum_t nextents;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001793 __uint64_t tmp;
1794 int error;
1795
1796 /*
1797 * Count the number of extended attribute blocks
1798 */
1799 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
1800 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1801 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK,
1802 &aforkblks);
1803 if (error)
1804 return error;
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 return error;
1812 }
1813
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 if (ip->i_d.di_version == 3 &&
1822 ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1823 (*target_log_flags) |= XFS_ILOG_DOWNER;
1824 error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK,
1825 tip->i_ino, NULL);
1826 if (error)
1827 return error;
1828 }
1829
1830 if (tip->i_d.di_version == 3 &&
1831 tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1832 (*src_log_flags) |= XFS_ILOG_DOWNER;
1833 error = xfs_bmbt_change_owner(tp, tip, XFS_DATA_FORK,
1834 ip->i_ino, NULL);
1835 if (error)
1836 return error;
1837 }
1838
1839 /*
1840 * Swap the data forks of the inodes
1841 */
1842 ifp = &ip->i_df;
1843 tifp = &tip->i_df;
1844 tempifp = *ifp; /* struct copy */
1845 *ifp = *tifp; /* struct copy */
1846 *tifp = tempifp; /* struct copy */
1847
1848 /*
1849 * Fix the on-disk inode values
1850 */
1851 tmp = (__uint64_t)ip->i_d.di_nblocks;
1852 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
1853 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
1854
1855 tmp = (__uint64_t) ip->i_d.di_nextents;
1856 ip->i_d.di_nextents = tip->i_d.di_nextents;
1857 tip->i_d.di_nextents = tmp;
1858
1859 tmp = (__uint64_t) ip->i_d.di_format;
1860 ip->i_d.di_format = tip->i_d.di_format;
1861 tip->i_d.di_format = tmp;
1862
1863 /*
1864 * The extents in the source inode could still contain speculative
1865 * preallocation beyond EOF (e.g. the file is open but not modified
1866 * while defrag is in progress). In that case, we need to copy over the
1867 * number of delalloc blocks the data fork in the source inode is
1868 * tracking beyond EOF so that when the fork is truncated away when the
1869 * temporary inode is unlinked we don't underrun the i_delayed_blks
1870 * counter on that inode.
1871 */
1872 ASSERT(tip->i_delayed_blks == 0);
1873 tip->i_delayed_blks = ip->i_delayed_blks;
1874 ip->i_delayed_blks = 0;
1875
1876 switch (ip->i_d.di_format) {
1877 case XFS_DINODE_FMT_EXTENTS:
Eric Sandeen5d829302016-11-08 12:59:42 +11001878 /*
1879 * If the extents fit in the inode, fix the pointer. Otherwise
1880 * it's already NULL or pointing to the extent.
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001881 */
Eric Sandeen5d829302016-11-08 12:59:42 +11001882 nextents = xfs_iext_count(&ip->i_df);
1883 if (nextents <= XFS_INLINE_EXTS)
1884 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001885 (*src_log_flags) |= XFS_ILOG_DEXT;
1886 break;
1887 case XFS_DINODE_FMT_BTREE:
1888 ASSERT(ip->i_d.di_version < 3 ||
1889 (*src_log_flags & XFS_ILOG_DOWNER));
1890 (*src_log_flags) |= XFS_ILOG_DBROOT;
1891 break;
1892 }
1893
1894 switch (tip->i_d.di_format) {
1895 case XFS_DINODE_FMT_EXTENTS:
Eric Sandeen5d829302016-11-08 12:59:42 +11001896 /*
1897 * If the extents fit in the inode, fix the pointer. Otherwise
1898 * it's already NULL or pointing to the extent.
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001899 */
Eric Sandeen5d829302016-11-08 12:59:42 +11001900 nextents = xfs_iext_count(&tip->i_df);
1901 if (nextents <= XFS_INLINE_EXTS)
1902 tifp->if_u1.if_extents = tifp->if_u2.if_inline_ext;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001903 (*target_log_flags) |= XFS_ILOG_DEXT;
1904 break;
1905 case XFS_DINODE_FMT_BTREE:
1906 (*target_log_flags) |= XFS_ILOG_DBROOT;
1907 ASSERT(tip->i_d.di_version < 3 ||
1908 (*target_log_flags & XFS_ILOG_DOWNER));
1909 break;
1910 }
1911
1912 return 0;
1913}
1914
Dave Chinner4ef897a2014-08-04 13:44:08 +10001915int
Dave Chinnera133d952013-08-12 20:49:48 +10001916xfs_swap_extents(
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001917 struct xfs_inode *ip, /* target inode */
1918 struct xfs_inode *tip, /* tmp inode */
1919 struct xfs_swapext *sxp)
Dave Chinnera133d952013-08-12 20:49:48 +10001920{
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001921 struct xfs_mount *mp = ip->i_mount;
1922 struct xfs_trans *tp;
1923 struct xfs_bstat *sbp = &sxp->sx_stat;
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001924 int src_log_flags, target_log_flags;
1925 int error = 0;
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001926 int lock_flags;
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07001927 struct xfs_ifork *cowfp;
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001928 __uint64_t f;
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001929 int resblks;
Dave Chinnera133d952013-08-12 20:49:48 +10001930
Dave Chinnera133d952013-08-12 20:49:48 +10001931 /*
Dave Chinner723cac42015-02-23 21:47:29 +11001932 * Lock the inodes against other IO, page faults and truncate to
1933 * begin with. Then we can ensure the inodes are flushed and have no
1934 * page cache safely. Once we have done this we can take the ilocks and
1935 * do the rest of the checks.
Dave Chinnera133d952013-08-12 20:49:48 +10001936 */
Christoph Hellwig65523212016-11-30 14:33:25 +11001937 lock_two_nondirectories(VFS_I(ip), VFS_I(tip));
1938 lock_flags = XFS_MMAPLOCK_EXCL;
Dave Chinner723cac42015-02-23 21:47:29 +11001939 xfs_lock_two_inodes(ip, tip, XFS_MMAPLOCK_EXCL);
Dave Chinnera133d952013-08-12 20:49:48 +10001940
1941 /* Verify that both files have the same format */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001942 if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) {
Dave Chinner24513372014-06-25 14:58:08 +10001943 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001944 goto out_unlock;
1945 }
1946
1947 /* Verify both files are either real-time or non-realtime */
1948 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
Dave Chinner24513372014-06-25 14:58:08 +10001949 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001950 goto out_unlock;
1951 }
1952
Dave Chinner4ef897a2014-08-04 13:44:08 +10001953 error = xfs_swap_extent_flush(ip);
Dave Chinnera133d952013-08-12 20:49:48 +10001954 if (error)
1955 goto out_unlock;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001956 error = xfs_swap_extent_flush(tip);
1957 if (error)
1958 goto out_unlock;
Dave Chinnera133d952013-08-12 20:49:48 +10001959
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001960 /*
1961 * Extent "swapping" with rmap requires a permanent reservation and
1962 * a block reservation because it's really just a remap operation
1963 * performed with log redo items!
1964 */
1965 if (xfs_sb_version_hasrmapbt(&mp->m_sb)) {
1966 /*
1967 * Conceptually this shouldn't affect the shape of either
1968 * bmbt, but since we atomically move extents one by one,
1969 * we reserve enough space to rebuild both trees.
1970 */
1971 resblks = XFS_SWAP_RMAP_SPACE_RES(mp,
1972 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK),
1973 XFS_DATA_FORK) +
1974 XFS_SWAP_RMAP_SPACE_RES(mp,
1975 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK),
1976 XFS_DATA_FORK);
1977 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1978 0, 0, &tp);
1979 } else
1980 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0,
1981 0, 0, &tp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001982 if (error)
Dave Chinnera133d952013-08-12 20:49:48 +10001983 goto out_unlock;
Dave Chinner723cac42015-02-23 21:47:29 +11001984
1985 /*
1986 * Lock and join the inodes to the tansaction so that transaction commit
1987 * or cancel will unlock the inodes from this point onwards.
1988 */
Dave Chinner4ef897a2014-08-04 13:44:08 +10001989 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1990 lock_flags |= XFS_ILOCK_EXCL;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001991 xfs_trans_ijoin(tp, ip, 0);
1992 xfs_trans_ijoin(tp, tip, 0);
Dave Chinner723cac42015-02-23 21:47:29 +11001993
Dave Chinnera133d952013-08-12 20:49:48 +10001994
1995 /* Verify all data are being swapped */
1996 if (sxp->sx_offset != 0 ||
1997 sxp->sx_length != ip->i_d.di_size ||
1998 sxp->sx_length != tip->i_d.di_size) {
Dave Chinner24513372014-06-25 14:58:08 +10001999 error = -EFAULT;
Dave Chinner4ef897a2014-08-04 13:44:08 +10002000 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002001 }
2002
2003 trace_xfs_swap_extent_before(ip, 0);
2004 trace_xfs_swap_extent_before(tip, 1);
2005
2006 /* check inode formats now that data is flushed */
2007 error = xfs_swap_extents_check_format(ip, tip);
2008 if (error) {
2009 xfs_notice(mp,
2010 "%s: inode 0x%llx format is incompatible for exchanging.",
2011 __func__, ip->i_ino);
Dave Chinner4ef897a2014-08-04 13:44:08 +10002012 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002013 }
2014
2015 /*
2016 * Compare the current change & modify times with that
2017 * passed in. If they differ, we abort this swap.
2018 * This is the mechanism used to ensure the calling
2019 * process that the file was not changed out from
2020 * under it.
2021 */
2022 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
2023 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
2024 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
2025 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
Dave Chinner24513372014-06-25 14:58:08 +10002026 error = -EBUSY;
Dave Chinner81217682014-08-04 13:29:32 +10002027 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002028 }
Dave Chinnera133d952013-08-12 20:49:48 +10002029
Dave Chinner21b5c972013-08-30 10:23:44 +10002030 /*
Dave Chinner21b5c972013-08-30 10:23:44 +10002031 * Note the trickiness in setting the log flags - we set the owner log
2032 * flag on the opposite inode (i.e. the inode we are setting the new
2033 * owner to be) because once we swap the forks and log that, log
2034 * recovery is going to see the fork as owned by the swapped inode,
2035 * not the pre-swapped inodes.
2036 */
2037 src_log_flags = XFS_ILOG_CORE;
2038 target_log_flags = XFS_ILOG_CORE;
Dave Chinner21b5c972013-08-30 10:23:44 +10002039
Darrick J. Wong1f08af52016-10-03 09:11:53 -07002040 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
2041 error = xfs_swap_extent_rmap(&tp, ip, tip);
2042 else
2043 error = xfs_swap_extent_forks(tp, ip, tip, &src_log_flags,
2044 &target_log_flags);
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002045 if (error)
2046 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002047
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07002048 /* Do we have to swap reflink flags? */
2049 if ((ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK) ^
2050 (tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK)) {
2051 f = ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK;
2052 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
2053 ip->i_d.di_flags2 |= tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK;
2054 tip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
2055 tip->i_d.di_flags2 |= f & XFS_DIFLAG2_REFLINK;
2056 cowfp = ip->i_cowfp;
2057 ip->i_cowfp = tip->i_cowfp;
2058 tip->i_cowfp = cowfp;
Darrick J. Wong83104d42016-10-03 09:11:46 -07002059 xfs_inode_set_cowblocks_tag(ip);
2060 xfs_inode_set_cowblocks_tag(tip);
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07002061 }
2062
Dave Chinnera133d952013-08-12 20:49:48 +10002063 xfs_trans_log_inode(tp, ip, src_log_flags);
2064 xfs_trans_log_inode(tp, tip, target_log_flags);
2065
2066 /*
2067 * If this is a synchronous mount, make sure that the
2068 * transaction goes to disk before returning to the user.
2069 */
2070 if (mp->m_flags & XFS_MOUNT_WSYNC)
2071 xfs_trans_set_sync(tp);
2072
Christoph Hellwig70393312015-06-04 13:48:08 +10002073 error = xfs_trans_commit(tp);
Dave Chinnera133d952013-08-12 20:49:48 +10002074
2075 trace_xfs_swap_extent_after(ip, 0);
2076 trace_xfs_swap_extent_after(tip, 1);
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002077
Christoph Hellwig65523212016-11-30 14:33:25 +11002078out_unlock:
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002079 xfs_iunlock(ip, lock_flags);
2080 xfs_iunlock(tip, lock_flags);
Christoph Hellwig65523212016-11-30 14:33:25 +11002081 unlock_two_nondirectories(VFS_I(ip), VFS_I(tip));
Dave Chinnera133d952013-08-12 20:49:48 +10002082 return error;
2083
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002084out_trans_cancel:
2085 xfs_trans_cancel(tp);
Christoph Hellwig65523212016-11-30 14:33:25 +11002086 goto out_unlock;
Dave Chinnera133d952013-08-12 20:49:48 +10002087}