blob: de94798f1c1b2baa55d6e23fceb1329670400a36 [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{
Dave Chinner68988112013-08-12 20:49:42 +100091 int error; /* error return value */
92 xfs_mount_t *mp; /* mount point structure */
93 xfs_extlen_t prod = 0; /* product factor for allocators */
94 xfs_extlen_t ralen = 0; /* realtime allocation length */
95 xfs_extlen_t align; /* minimum allocation alignment */
96 xfs_rtblock_t rtb;
97
98 mp = ap->ip->i_mount;
99 align = xfs_get_extsz_hint(ap->ip);
100 prod = align / mp->m_sb.sb_rextsize;
101 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
102 align, 1, ap->eof, 0,
103 ap->conv, &ap->offset, &ap->length);
104 if (error)
105 return error;
106 ASSERT(ap->length);
107 ASSERT(ap->length % mp->m_sb.sb_rextsize == 0);
108
109 /*
110 * If the offset & length are not perfectly aligned
111 * then kill prod, it will just get us in trouble.
112 */
113 if (do_mod(ap->offset, align) || ap->length % align)
114 prod = 1;
115 /*
116 * Set ralen to be the actual requested length in rtextents.
117 */
118 ralen = ap->length / mp->m_sb.sb_rextsize;
119 /*
120 * If the old value was close enough to MAXEXTLEN that
121 * we rounded up to it, cut it back so it's valid again.
122 * Note that if it's a really large request (bigger than
123 * MAXEXTLEN), we don't hear about that number, and can't
124 * adjust the starting point to match it.
125 */
126 if (ralen * mp->m_sb.sb_rextsize >= MAXEXTLEN)
127 ralen = MAXEXTLEN / mp->m_sb.sb_rextsize;
128
129 /*
Dave Chinner4b680af2016-02-08 10:46:51 +1100130 * Lock out modifications to both the RT bitmap and summary inodes
Dave Chinner68988112013-08-12 20:49:42 +1000131 */
Darrick J. Wongf4a06602016-08-03 11:00:42 +1000132 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
Dave Chinner68988112013-08-12 20:49:42 +1000133 xfs_trans_ijoin(ap->tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Darrick J. Wongf4a06602016-08-03 11:00:42 +1000134 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
Dave Chinner4b680af2016-02-08 10:46:51 +1100135 xfs_trans_ijoin(ap->tp, mp->m_rsumip, XFS_ILOCK_EXCL);
Dave Chinner68988112013-08-12 20:49:42 +1000136
137 /*
138 * If it's an allocation to an empty file at offset 0,
139 * pick an extent that will space things out in the rt area.
140 */
141 if (ap->eof && ap->offset == 0) {
142 xfs_rtblock_t uninitialized_var(rtx); /* realtime extent no */
143
144 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx);
145 if (error)
146 return error;
147 ap->blkno = rtx * mp->m_sb.sb_rextsize;
148 } else {
149 ap->blkno = 0;
150 }
151
152 xfs_bmap_adjacent(ap);
153
154 /*
155 * Realtime allocation, done through xfs_rtallocate_extent.
156 */
Dave Chinner68988112013-08-12 20:49:42 +1000157 do_div(ap->blkno, mp->m_sb.sb_rextsize);
158 rtb = ap->blkno;
159 ap->length = ralen;
Christoph Hellwig089ec2f2017-02-17 08:21:06 -0800160 error = xfs_rtallocate_extent(ap->tp, ap->blkno, 1, ap->length,
161 &ralen, ap->wasdel, prod, &rtb);
162 if (error)
Dave Chinner68988112013-08-12 20:49:42 +1000163 return error;
Christoph Hellwig089ec2f2017-02-17 08:21:06 -0800164
Dave Chinner68988112013-08-12 20:49:42 +1000165 ap->blkno = rtb;
166 if (ap->blkno != NULLFSBLOCK) {
167 ap->blkno *= mp->m_sb.sb_rextsize;
168 ralen *= mp->m_sb.sb_rextsize;
169 ap->length = ralen;
170 ap->ip->i_d.di_nblocks += ralen;
171 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
172 if (ap->wasdel)
173 ap->ip->i_delayed_blks -= ralen;
174 /*
175 * Adjust the disk quota also. This was reserved
176 * earlier.
177 */
178 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
179 ap->wasdel ? XFS_TRANS_DQ_DELRTBCOUNT :
180 XFS_TRANS_DQ_RTBCOUNT, (long) ralen);
Dave Chinner3fbbbea2015-11-03 12:27:22 +1100181
182 /* Zero the extent if we were asked to do so */
Dave Chinner292378e2016-09-26 08:21:28 +1000183 if (ap->datatype & XFS_ALLOC_USERDATA_ZERO) {
Dave Chinner3fbbbea2015-11-03 12:27:22 +1100184 error = xfs_zero_extent(ap->ip, ap->blkno, ap->length);
185 if (error)
186 return error;
187 }
Dave Chinner68988112013-08-12 20:49:42 +1000188 } else {
189 ap->length = 0;
190 }
191 return 0;
192}
193
194/*
Dave Chinner68988112013-08-12 20:49:42 +1000195 * Check if the endoff is outside the last extent. If so the caller will grow
196 * the allocation to a stripe unit boundary. All offsets are considered outside
197 * the end of file for an empty fork, so 1 is returned in *eof in that case.
198 */
199int
200xfs_bmap_eof(
201 struct xfs_inode *ip,
202 xfs_fileoff_t endoff,
203 int whichfork,
204 int *eof)
205{
206 struct xfs_bmbt_irec rec;
207 int error;
208
209 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof);
210 if (error || *eof)
211 return error;
212
213 *eof = endoff >= rec.br_startoff + rec.br_blockcount;
214 return 0;
215}
216
217/*
218 * Extent tree block counting routines.
219 */
220
221/*
222 * Count leaf blocks given a range of extent records.
223 */
224STATIC void
225xfs_bmap_count_leaves(
226 xfs_ifork_t *ifp,
227 xfs_extnum_t idx,
228 int numrecs,
229 int *count)
230{
231 int b;
232
233 for (b = 0; b < numrecs; b++) {
234 xfs_bmbt_rec_host_t *frp = xfs_iext_get_ext(ifp, idx + b);
235 *count += xfs_bmbt_get_blockcount(frp);
236 }
237}
238
239/*
240 * Count leaf blocks given a range of extent records originally
241 * in btree format.
242 */
243STATIC void
244xfs_bmap_disk_count_leaves(
245 struct xfs_mount *mp,
246 struct xfs_btree_block *block,
247 int numrecs,
248 int *count)
249{
250 int b;
251 xfs_bmbt_rec_t *frp;
252
253 for (b = 1; b <= numrecs; b++) {
254 frp = XFS_BMBT_REC_ADDR(mp, block, b);
255 *count += xfs_bmbt_disk_get_blockcount(frp);
256 }
257}
258
259/*
260 * Recursively walks each level of a btree
Zhi Yong Wu8be11e92013-08-12 03:14:52 +0000261 * to count total fsblocks in use.
Dave Chinner68988112013-08-12 20:49:42 +1000262 */
263STATIC int /* error */
264xfs_bmap_count_tree(
265 xfs_mount_t *mp, /* file system mount point */
266 xfs_trans_t *tp, /* transaction pointer */
267 xfs_ifork_t *ifp, /* inode fork pointer */
268 xfs_fsblock_t blockno, /* file system block number */
269 int levelin, /* level in btree */
270 int *count) /* Count of blocks */
271{
272 int error;
273 xfs_buf_t *bp, *nbp;
274 int level = levelin;
275 __be64 *pp;
276 xfs_fsblock_t bno = blockno;
277 xfs_fsblock_t nextbno;
278 struct xfs_btree_block *block, *nextblock;
279 int numrecs;
280
281 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp, XFS_BMAP_BTREE_REF,
282 &xfs_bmbt_buf_ops);
283 if (error)
284 return error;
285 *count += 1;
286 block = XFS_BUF_TO_BLOCK(bp);
287
288 if (--level) {
289 /* Not at node above leaves, count this level of nodes */
290 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
291 while (nextbno != NULLFSBLOCK) {
292 error = xfs_btree_read_bufl(mp, tp, nextbno, 0, &nbp,
293 XFS_BMAP_BTREE_REF,
294 &xfs_bmbt_buf_ops);
295 if (error)
296 return error;
297 *count += 1;
298 nextblock = XFS_BUF_TO_BLOCK(nbp);
299 nextbno = be64_to_cpu(nextblock->bb_u.l.bb_rightsib);
300 xfs_trans_brelse(tp, nbp);
301 }
302
303 /* Dive to the next level */
304 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
305 bno = be64_to_cpu(*pp);
306 if (unlikely((error =
307 xfs_bmap_count_tree(mp, tp, ifp, bno, level, count)) < 0)) {
308 xfs_trans_brelse(tp, bp);
309 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
310 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000311 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000312 }
313 xfs_trans_brelse(tp, bp);
314 } else {
315 /* count all level 1 nodes and their leaves */
316 for (;;) {
317 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
318 numrecs = be16_to_cpu(block->bb_numrecs);
319 xfs_bmap_disk_count_leaves(mp, block, numrecs, count);
320 xfs_trans_brelse(tp, bp);
321 if (nextbno == NULLFSBLOCK)
322 break;
323 bno = nextbno;
324 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
325 XFS_BMAP_BTREE_REF,
326 &xfs_bmbt_buf_ops);
327 if (error)
328 return error;
329 *count += 1;
330 block = XFS_BUF_TO_BLOCK(bp);
331 }
332 }
333 return 0;
334}
335
336/*
337 * Count fsblocks of the given fork.
338 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000339static int /* error */
Dave Chinner68988112013-08-12 20:49:42 +1000340xfs_bmap_count_blocks(
341 xfs_trans_t *tp, /* transaction pointer */
342 xfs_inode_t *ip, /* incore inode */
343 int whichfork, /* data or attr fork */
344 int *count) /* out: count of blocks */
345{
346 struct xfs_btree_block *block; /* current btree block */
347 xfs_fsblock_t bno; /* block # of "block" */
348 xfs_ifork_t *ifp; /* fork structure */
349 int level; /* btree level, for checking */
350 xfs_mount_t *mp; /* file system mount structure */
351 __be64 *pp; /* pointer to block address */
352
353 bno = NULLFSBLOCK;
354 mp = ip->i_mount;
355 ifp = XFS_IFORK_PTR(ip, whichfork);
356 if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
Eric Sandeen5d829302016-11-08 12:59:42 +1100357 xfs_bmap_count_leaves(ifp, 0, xfs_iext_count(ifp), count);
Dave Chinner68988112013-08-12 20:49:42 +1000358 return 0;
359 }
360
361 /*
362 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
363 */
364 block = ifp->if_broot;
365 level = be16_to_cpu(block->bb_level);
366 ASSERT(level > 0);
367 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
368 bno = be64_to_cpu(*pp);
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000369 ASSERT(bno != NULLFSBLOCK);
Dave Chinner68988112013-08-12 20:49:42 +1000370 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
371 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
372
373 if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
374 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
375 mp);
Dave Chinner24513372014-06-25 14:58:08 +1000376 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000377 }
378
379 return 0;
380}
381
382/*
383 * returns 1 for success, 0 if we failed to map the extent.
384 */
385STATIC int
386xfs_getbmapx_fix_eof_hole(
387 xfs_inode_t *ip, /* xfs incore inode pointer */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700388 int whichfork,
Dave Chinner68988112013-08-12 20:49:42 +1000389 struct getbmapx *out, /* output structure */
390 int prealloced, /* this is a file with
391 * preallocated data space */
392 __int64_t end, /* last block requested */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700393 xfs_fsblock_t startblock,
394 bool moretocome)
Dave Chinner68988112013-08-12 20:49:42 +1000395{
396 __int64_t fixlen;
397 xfs_mount_t *mp; /* file system mount point */
398 xfs_ifork_t *ifp; /* inode fork pointer */
399 xfs_extnum_t lastx; /* last extent pointer */
400 xfs_fileoff_t fileblock;
401
402 if (startblock == HOLESTARTBLOCK) {
403 mp = ip->i_mount;
404 out->bmv_block = -1;
405 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, XFS_ISIZE(ip)));
406 fixlen -= out->bmv_offset;
407 if (prealloced && out->bmv_offset + out->bmv_length == end) {
408 /* Came to hole at EOF. Trim it. */
409 if (fixlen <= 0)
410 return 0;
411 out->bmv_length = fixlen;
412 }
413 } else {
414 if (startblock == DELAYSTARTBLOCK)
415 out->bmv_block = -2;
416 else
417 out->bmv_block = xfs_fsb_to_db(ip, startblock);
418 fileblock = XFS_BB_TO_FSB(ip->i_mount, out->bmv_offset);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700419 ifp = XFS_IFORK_PTR(ip, whichfork);
420 if (!moretocome &&
421 xfs_iext_bno_to_ext(ifp, fileblock, &lastx) &&
Eric Sandeen5d829302016-11-08 12:59:42 +1100422 (lastx == xfs_iext_count(ifp) - 1))
Dave Chinner68988112013-08-12 20:49:42 +1000423 out->bmv_oflags |= BMV_OF_LAST;
424 }
425
426 return 1;
427}
428
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700429/* Adjust the reported bmap around shared/unshared extent transitions. */
430STATIC int
431xfs_getbmap_adjust_shared(
432 struct xfs_inode *ip,
433 int whichfork,
434 struct xfs_bmbt_irec *map,
435 struct getbmapx *out,
436 struct xfs_bmbt_irec *next_map)
437{
438 struct xfs_mount *mp = ip->i_mount;
439 xfs_agnumber_t agno;
440 xfs_agblock_t agbno;
441 xfs_agblock_t ebno;
442 xfs_extlen_t elen;
443 xfs_extlen_t nlen;
444 int error;
445
446 next_map->br_startblock = NULLFSBLOCK;
447 next_map->br_startoff = NULLFILEOFF;
448 next_map->br_blockcount = 0;
449
450 /* Only written data blocks can be shared. */
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -0700451 if (!xfs_is_reflink_inode(ip) ||
452 whichfork != XFS_DATA_FORK ||
453 !xfs_bmap_is_real_extent(map))
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700454 return 0;
455
456 agno = XFS_FSB_TO_AGNO(mp, map->br_startblock);
457 agbno = XFS_FSB_TO_AGBNO(mp, map->br_startblock);
458 error = xfs_reflink_find_shared(mp, agno, agbno, map->br_blockcount,
459 &ebno, &elen, true);
460 if (error)
461 return error;
462
463 if (ebno == NULLAGBLOCK) {
464 /* No shared blocks at all. */
465 return 0;
466 } else if (agbno == ebno) {
467 /*
468 * Shared extent at (agbno, elen). Shrink the reported
469 * extent length and prepare to move the start of map[i]
470 * to agbno+elen, with the aim of (re)formatting the new
471 * map[i] the next time through the inner loop.
472 */
473 out->bmv_length = XFS_FSB_TO_BB(mp, elen);
474 out->bmv_oflags |= BMV_OF_SHARED;
475 if (elen != map->br_blockcount) {
476 *next_map = *map;
477 next_map->br_startblock += elen;
478 next_map->br_startoff += elen;
479 next_map->br_blockcount -= elen;
480 }
481 map->br_blockcount -= elen;
482 } else {
483 /*
484 * There's an unshared extent (agbno, ebno - agbno)
485 * followed by shared extent at (ebno, elen). Shrink
486 * the reported extent length to cover only the unshared
487 * extent and prepare to move up the start of map[i] to
488 * ebno, with the aim of (re)formatting the new map[i]
489 * the next time through the inner loop.
490 */
491 *next_map = *map;
492 nlen = ebno - agbno;
493 out->bmv_length = XFS_FSB_TO_BB(mp, nlen);
494 next_map->br_startblock += nlen;
495 next_map->br_startoff += nlen;
496 next_map->br_blockcount -= nlen;
497 map->br_blockcount -= nlen;
498 }
499
500 return 0;
501}
502
Dave Chinner68988112013-08-12 20:49:42 +1000503/*
504 * Get inode's extents as described in bmv, and format for output.
505 * Calls formatter to fill the user's buffer until all extents
506 * are mapped, until the passed-in bmv->bmv_count slots have
507 * been filled, or until the formatter short-circuits the loop,
508 * if it is tracking filled-in extents on its own.
509 */
510int /* error code */
511xfs_getbmap(
512 xfs_inode_t *ip,
513 struct getbmapx *bmv, /* user bmap structure */
514 xfs_bmap_format_t formatter, /* format to user */
515 void *arg) /* formatter arg */
516{
517 __int64_t bmvend; /* last block requested */
518 int error = 0; /* return value */
519 __int64_t fixlen; /* length for -1 case */
520 int i; /* extent number */
521 int lock; /* lock state */
522 xfs_bmbt_irec_t *map; /* buffer for user's data */
523 xfs_mount_t *mp; /* file system mount point */
524 int nex; /* # of user extents can do */
Dave Chinner68988112013-08-12 20:49:42 +1000525 int subnex; /* # of bmapi's can do */
526 int nmap; /* number of map entries */
527 struct getbmapx *out; /* output structure */
528 int whichfork; /* data or attr fork */
529 int prealloced; /* this is a file with
530 * preallocated data space */
531 int iflags; /* interface flags */
532 int bmapi_flags; /* flags for xfs_bmapi */
533 int cur_ext = 0;
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700534 struct xfs_bmbt_irec inject_map;
Dave Chinner68988112013-08-12 20:49:42 +1000535
536 mp = ip->i_mount;
537 iflags = bmv->bmv_iflags;
Dave Chinner68988112013-08-12 20:49:42 +1000538
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700539#ifndef DEBUG
540 /* Only allow CoW fork queries if we're debugging. */
541 if (iflags & BMV_IF_COWFORK)
542 return -EINVAL;
543#endif
544 if ((iflags & BMV_IF_ATTRFORK) && (iflags & BMV_IF_COWFORK))
545 return -EINVAL;
546
547 if (iflags & BMV_IF_ATTRFORK)
548 whichfork = XFS_ATTR_FORK;
549 else if (iflags & BMV_IF_COWFORK)
550 whichfork = XFS_COW_FORK;
551 else
552 whichfork = XFS_DATA_FORK;
553
554 switch (whichfork) {
555 case XFS_ATTR_FORK:
Dave Chinner68988112013-08-12 20:49:42 +1000556 if (XFS_IFORK_Q(ip)) {
557 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS &&
558 ip->i_d.di_aformat != XFS_DINODE_FMT_BTREE &&
559 ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +1000560 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000561 } else if (unlikely(
562 ip->i_d.di_aformat != 0 &&
563 ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS)) {
564 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW,
565 ip->i_mount);
Dave Chinner24513372014-06-25 14:58:08 +1000566 return -EFSCORRUPTED;
Dave Chinner68988112013-08-12 20:49:42 +1000567 }
568
569 prealloced = 0;
570 fixlen = 1LL << 32;
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700571 break;
572 case XFS_COW_FORK:
573 if (ip->i_cformat != XFS_DINODE_FMT_EXTENTS)
574 return -EINVAL;
575
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700576 if (xfs_get_cowextsz_hint(ip)) {
577 prealloced = 1;
578 fixlen = mp->m_super->s_maxbytes;
579 } else {
580 prealloced = 0;
581 fixlen = XFS_ISIZE(ip);
582 }
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700583 break;
584 default:
Dave Chinner68988112013-08-12 20:49:42 +1000585 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
586 ip->i_d.di_format != XFS_DINODE_FMT_BTREE &&
587 ip->i_d.di_format != XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +1000588 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000589
590 if (xfs_get_extsz_hint(ip) ||
591 ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)){
592 prealloced = 1;
593 fixlen = mp->m_super->s_maxbytes;
594 } else {
595 prealloced = 0;
596 fixlen = XFS_ISIZE(ip);
597 }
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700598 break;
Dave Chinner68988112013-08-12 20:49:42 +1000599 }
600
601 if (bmv->bmv_length == -1) {
602 fixlen = XFS_FSB_TO_BB(mp, XFS_B_TO_FSB(mp, fixlen));
603 bmv->bmv_length =
604 max_t(__int64_t, fixlen - bmv->bmv_offset, 0);
605 } else if (bmv->bmv_length == 0) {
606 bmv->bmv_entries = 0;
607 return 0;
608 } else if (bmv->bmv_length < 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000609 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000610 }
611
612 nex = bmv->bmv_count - 1;
613 if (nex <= 0)
Dave Chinner24513372014-06-25 14:58:08 +1000614 return -EINVAL;
Dave Chinner68988112013-08-12 20:49:42 +1000615 bmvend = bmv->bmv_offset + bmv->bmv_length;
616
617
618 if (bmv->bmv_count > ULONG_MAX / sizeof(struct getbmapx))
Dave Chinner24513372014-06-25 14:58:08 +1000619 return -ENOMEM;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000620 out = kmem_zalloc_large(bmv->bmv_count * sizeof(struct getbmapx), 0);
621 if (!out)
Dave Chinner24513372014-06-25 14:58:08 +1000622 return -ENOMEM;
Dave Chinner68988112013-08-12 20:49:42 +1000623
624 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700625 switch (whichfork) {
626 case XFS_DATA_FORK:
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800627 if (!(iflags & BMV_IF_DELALLOC) &&
628 (ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_d.di_size)) {
Dave Chinner24513372014-06-25 14:58:08 +1000629 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
Dave Chinner68988112013-08-12 20:49:42 +1000630 if (error)
631 goto out_unlock_iolock;
Dave Chinner68988112013-08-12 20:49:42 +1000632
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800633 /*
634 * Even after flushing the inode, there can still be
635 * delalloc blocks on the inode beyond EOF due to
636 * speculative preallocation. These are not removed
637 * until the release function is called or the inode
638 * is inactivated. Hence we cannot assert here that
639 * ip->i_delayed_blks == 0.
640 */
641 }
642
643 lock = xfs_ilock_data_map_shared(ip);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700644 break;
645 case XFS_COW_FORK:
646 lock = XFS_ILOCK_SHARED;
647 xfs_ilock(ip, lock);
648 break;
649 case XFS_ATTR_FORK:
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800650 lock = xfs_ilock_attr_map_shared(ip);
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700651 break;
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800652 }
Dave Chinner68988112013-08-12 20:49:42 +1000653
654 /*
655 * Don't let nex be bigger than the number of extents
656 * we can have assuming alternating holes and real extents.
657 */
658 if (nex > XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1)
659 nex = XFS_IFORK_NEXTENTS(ip, whichfork) * 2 + 1;
660
661 bmapi_flags = xfs_bmapi_aflag(whichfork);
662 if (!(iflags & BMV_IF_PREALLOC))
663 bmapi_flags |= XFS_BMAPI_IGSTATE;
664
665 /*
666 * Allocate enough space to handle "subnex" maps at a time.
667 */
Dave Chinner24513372014-06-25 14:58:08 +1000668 error = -ENOMEM;
Dave Chinner68988112013-08-12 20:49:42 +1000669 subnex = 16;
670 map = kmem_alloc(subnex * sizeof(*map), KM_MAYFAIL | KM_NOFS);
671 if (!map)
672 goto out_unlock_ilock;
673
674 bmv->bmv_entries = 0;
675
676 if (XFS_IFORK_NEXTENTS(ip, whichfork) == 0 &&
677 (whichfork == XFS_ATTR_FORK || !(iflags & BMV_IF_DELALLOC))) {
678 error = 0;
679 goto out_free_map;
680 }
681
Dave Chinner68988112013-08-12 20:49:42 +1000682 do {
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800683 nmap = (nex> subnex) ? subnex : nex;
Dave Chinner68988112013-08-12 20:49:42 +1000684 error = xfs_bmapi_read(ip, XFS_BB_TO_FSBT(mp, bmv->bmv_offset),
685 XFS_BB_TO_FSB(mp, bmv->bmv_length),
686 map, &nmap, bmapi_flags);
687 if (error)
688 goto out_free_map;
689 ASSERT(nmap <= subnex);
690
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800691 for (i = 0; i < nmap && bmv->bmv_length &&
692 cur_ext < bmv->bmv_count - 1; i++) {
Dave Chinner68988112013-08-12 20:49:42 +1000693 out[cur_ext].bmv_oflags = 0;
694 if (map[i].br_state == XFS_EXT_UNWRITTEN)
695 out[cur_ext].bmv_oflags |= BMV_OF_PREALLOC;
696 else if (map[i].br_startblock == DELAYSTARTBLOCK)
697 out[cur_ext].bmv_oflags |= BMV_OF_DELALLOC;
698 out[cur_ext].bmv_offset =
699 XFS_FSB_TO_BB(mp, map[i].br_startoff);
700 out[cur_ext].bmv_length =
701 XFS_FSB_TO_BB(mp, map[i].br_blockcount);
702 out[cur_ext].bmv_unused1 = 0;
703 out[cur_ext].bmv_unused2 = 0;
704
705 /*
706 * delayed allocation extents that start beyond EOF can
707 * occur due to speculative EOF allocation when the
708 * delalloc extent is larger than the largest freespace
709 * extent at conversion time. These extents cannot be
710 * converted by data writeback, so can exist here even
711 * if we are not supposed to be finding delalloc
712 * extents.
713 */
714 if (map[i].br_startblock == DELAYSTARTBLOCK &&
715 map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
716 ASSERT((iflags & BMV_IF_DELALLOC) != 0);
717
718 if (map[i].br_startblock == HOLESTARTBLOCK &&
719 whichfork == XFS_ATTR_FORK) {
720 /* came to the end of attribute fork */
721 out[cur_ext].bmv_oflags |= BMV_OF_LAST;
722 goto out_free_map;
723 }
724
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700725 /* Is this a shared block? */
726 error = xfs_getbmap_adjust_shared(ip, whichfork,
727 &map[i], &out[cur_ext], &inject_map);
728 if (error)
729 goto out_free_map;
730
731 if (!xfs_getbmapx_fix_eof_hole(ip, whichfork,
732 &out[cur_ext], prealloced, bmvend,
733 map[i].br_startblock,
734 inject_map.br_startblock != NULLFSBLOCK))
Dave Chinner68988112013-08-12 20:49:42 +1000735 goto out_free_map;
736
737 bmv->bmv_offset =
738 out[cur_ext].bmv_offset +
739 out[cur_ext].bmv_length;
740 bmv->bmv_length =
741 max_t(__int64_t, 0, bmvend - bmv->bmv_offset);
742
743 /*
744 * In case we don't want to return the hole,
745 * don't increase cur_ext so that we can reuse
746 * it in the next loop.
747 */
748 if ((iflags & BMV_IF_NO_HOLES) &&
749 map[i].br_startblock == HOLESTARTBLOCK) {
750 memset(&out[cur_ext], 0, sizeof(out[cur_ext]));
751 continue;
752 }
753
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800754 /*
755 * In order to report shared extents accurately,
756 * we report each distinct shared/unshared part
757 * of a single bmbt record using multiple bmap
758 * extents. To make that happen, we iterate the
759 * same map array item multiple times, each
760 * time trimming out the subextent that we just
761 * reported.
762 *
763 * Because of this, we must check the out array
764 * index (cur_ext) directly against bmv_count-1
765 * to avoid overflows.
766 */
Darrick J. Wongf86f4032016-10-03 09:11:41 -0700767 if (inject_map.br_startblock != NULLFSBLOCK) {
768 map[i] = inject_map;
769 i--;
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800770 }
Dave Chinner68988112013-08-12 20:49:42 +1000771 bmv->bmv_entries++;
772 cur_ext++;
773 }
Darrick J. Wongc364b6d2017-01-26 09:50:30 -0800774 } while (nmap && bmv->bmv_length && cur_ext < bmv->bmv_count - 1);
Dave Chinner68988112013-08-12 20:49:42 +1000775
776 out_free_map:
777 kmem_free(map);
778 out_unlock_ilock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -0800779 xfs_iunlock(ip, lock);
Dave Chinner68988112013-08-12 20:49:42 +1000780 out_unlock_iolock:
781 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
782
783 for (i = 0; i < cur_ext; i++) {
Dave Chinner68988112013-08-12 20:49:42 +1000784 /* format results & advance arg */
Eric Sandeen1dbba082017-01-27 23:24:28 -0800785 error = formatter(&arg, &out[i]);
786 if (error)
Dave Chinner68988112013-08-12 20:49:42 +1000787 break;
788 }
789
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000790 kmem_free(out);
Dave Chinner68988112013-08-12 20:49:42 +1000791 return error;
792}
793
794/*
795 * dead simple method of punching delalyed allocation blocks from a range in
796 * 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 +0000797 * rare error cases so the overhead is not critical. This will always punch out
Dave Chinner68988112013-08-12 20:49:42 +1000798 * both the start and end blocks, even if the ranges only partially overlap
799 * them, so it is up to the caller to ensure that partial blocks are not
800 * passed in.
801 */
802int
803xfs_bmap_punch_delalloc_range(
804 struct xfs_inode *ip,
805 xfs_fileoff_t start_fsb,
806 xfs_fileoff_t length)
807{
808 xfs_fileoff_t remaining = length;
809 int error = 0;
810
811 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
812
813 do {
814 int done;
815 xfs_bmbt_irec_t imap;
816 int nimaps = 1;
817 xfs_fsblock_t firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000818 struct xfs_defer_ops dfops;
Dave Chinner68988112013-08-12 20:49:42 +1000819
820 /*
821 * Map the range first and check that it is a delalloc extent
822 * before trying to unmap the range. Otherwise we will be
823 * trying to remove a real extent (which requires a
824 * transaction) or a hole, which is probably a bad idea...
825 */
826 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps,
827 XFS_BMAPI_ENTIRE);
828
829 if (error) {
830 /* something screwed, just bail */
831 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
832 xfs_alert(ip->i_mount,
833 "Failed delalloc mapping lookup ino %lld fsb %lld.",
834 ip->i_ino, start_fsb);
835 }
836 break;
837 }
838 if (!nimaps) {
839 /* nothing there */
840 goto next_block;
841 }
842 if (imap.br_startblock != DELAYSTARTBLOCK) {
843 /* been converted, ignore */
844 goto next_block;
845 }
846 WARN_ON(imap.br_blockcount == 0);
847
848 /*
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000849 * Note: while we initialise the firstblock/dfops pair, they
Dave Chinner68988112013-08-12 20:49:42 +1000850 * should never be used because blocks should never be
851 * allocated or freed for a delalloc extent and hence we need
852 * don't cancel or finish them after the xfs_bunmapi() call.
853 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000854 xfs_defer_init(&dfops, &firstblock);
Dave Chinner68988112013-08-12 20:49:42 +1000855 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000856 &dfops, &done);
Dave Chinner68988112013-08-12 20:49:42 +1000857 if (error)
858 break;
859
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000860 ASSERT(!xfs_defer_has_unfinished_work(&dfops));
Dave Chinner68988112013-08-12 20:49:42 +1000861next_block:
862 start_fsb++;
863 remaining--;
864 } while(remaining > 0);
865
866 return error;
867}
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000868
869/*
870 * Test whether it is appropriate to check an inode for and free post EOF
871 * blocks. The 'force' parameter determines whether we should also consider
872 * regular files that are marked preallocated or append-only.
873 */
874bool
875xfs_can_free_eofblocks(struct xfs_inode *ip, bool force)
876{
877 /* prealloc/delalloc exists only on regular files */
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100878 if (!S_ISREG(VFS_I(ip)->i_mode))
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000879 return false;
880
881 /*
882 * Zero sized files with no cached pages and delalloc blocks will not
883 * have speculative prealloc/delalloc blocks to remove.
884 */
885 if (VFS_I(ip)->i_size == 0 &&
Dave Chinner2667c6f2014-08-04 13:23:15 +1000886 VFS_I(ip)->i_mapping->nrpages == 0 &&
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000887 ip->i_delayed_blks == 0)
888 return false;
889
890 /* If we haven't read in the extent list, then don't do it now. */
891 if (!(ip->i_df.if_flags & XFS_IFEXTENTS))
892 return false;
893
894 /*
895 * Do not free real preallocated or append-only files unless the file
896 * has delalloc blocks and we are forced to remove them.
897 */
898 if (ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND))
899 if (!force || ip->i_delayed_blks == 0)
900 return false;
901
902 return true;
903}
904
905/*
Brian Foster3b4683c2017-04-11 10:50:05 -0700906 * This is called to free any blocks beyond eof. The caller must hold
907 * IOLOCK_EXCL unless we are in the inode reclaim path and have the only
908 * reference to the inode.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000909 */
910int
911xfs_free_eofblocks(
Brian Fostera36b9262017-01-27 23:22:55 -0800912 struct xfs_inode *ip)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000913{
Brian Fostera36b9262017-01-27 23:22:55 -0800914 struct xfs_trans *tp;
915 int error;
916 xfs_fileoff_t end_fsb;
917 xfs_fileoff_t last_fsb;
918 xfs_filblks_t map_len;
919 int nimaps;
920 struct xfs_bmbt_irec imap;
921 struct xfs_mount *mp = ip->i_mount;
922
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000923 /*
924 * Figure out if there are any blocks beyond the end
925 * of the file. If not, then there is nothing to do.
926 */
927 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
928 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
929 if (last_fsb <= end_fsb)
930 return 0;
931 map_len = last_fsb - end_fsb;
932
933 nimaps = 1;
934 xfs_ilock(ip, XFS_ILOCK_SHARED);
935 error = xfs_bmapi_read(ip, end_fsb, map_len, &imap, &nimaps, 0);
936 xfs_iunlock(ip, XFS_ILOCK_SHARED);
937
Brian Fostera36b9262017-01-27 23:22:55 -0800938 /*
939 * If there are blocks after the end of file, truncate the file to its
940 * current size to free them up.
941 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000942 if (!error && (nimaps != 0) &&
943 (imap.br_startblock != HOLESTARTBLOCK ||
944 ip->i_delayed_blks)) {
945 /*
946 * Attach the dquots to the inode up front.
947 */
948 error = xfs_qm_dqattach(ip, 0);
949 if (error)
950 return error;
951
Brian Fostere4229d6b2017-01-27 23:22:57 -0800952 /* wait on dio to ensure i_size has settled */
953 inode_dio_wait(VFS_I(ip));
954
Christoph Hellwig253f4912016-04-06 09:19:55 +1000955 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0,
956 &tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000957 if (error) {
958 ASSERT(XFS_FORCED_SHUTDOWN(mp));
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000959 return error;
960 }
961
962 xfs_ilock(ip, XFS_ILOCK_EXCL);
963 xfs_trans_ijoin(tp, ip, 0);
964
965 /*
966 * Do not update the on-disk file size. If we update the
967 * on-disk file size and then the system crashes before the
968 * contents of the file are flushed to disk then the files
969 * may be full of holes (ie NULL files bug).
970 */
971 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK,
972 XFS_ISIZE(ip));
973 if (error) {
974 /*
975 * If we get an error at this point we simply don't
976 * bother truncating the file.
977 */
Christoph Hellwig4906e212015-06-04 13:47:56 +1000978 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000979 } else {
Christoph Hellwig70393312015-06-04 13:48:08 +1000980 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000981 if (!error)
982 xfs_inode_clear_eofblocks_tag(ip);
983 }
984
985 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000986 }
987 return error;
988}
989
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700990int
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000991xfs_alloc_file_space(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700992 struct xfs_inode *ip,
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000993 xfs_off_t offset,
994 xfs_off_t len,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700995 int alloc_type)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000996{
997 xfs_mount_t *mp = ip->i_mount;
998 xfs_off_t count;
999 xfs_filblks_t allocated_fsb;
1000 xfs_filblks_t allocatesize_fsb;
1001 xfs_extlen_t extsz, temp;
1002 xfs_fileoff_t startoffset_fsb;
1003 xfs_fsblock_t firstfsb;
1004 int nimaps;
1005 int quota_flag;
1006 int rt;
1007 xfs_trans_t *tp;
1008 xfs_bmbt_irec_t imaps[1], *imapp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001009 struct xfs_defer_ops dfops;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001010 uint qblocks, resblks, resrtextents;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001011 int error;
1012
1013 trace_xfs_alloc_file_space(ip);
1014
1015 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001016 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001017
1018 error = xfs_qm_dqattach(ip, 0);
1019 if (error)
1020 return error;
1021
1022 if (len <= 0)
Dave Chinner24513372014-06-25 14:58:08 +10001023 return -EINVAL;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001024
1025 rt = XFS_IS_REALTIME_INODE(ip);
1026 extsz = xfs_get_extsz_hint(ip);
1027
1028 count = len;
1029 imapp = &imaps[0];
1030 nimaps = 1;
1031 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
1032 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
1033
1034 /*
1035 * Allocate file space until done or until there is an error
1036 */
1037 while (allocatesize_fsb && !error) {
1038 xfs_fileoff_t s, e;
1039
1040 /*
1041 * Determine space reservations for data/realtime.
1042 */
1043 if (unlikely(extsz)) {
1044 s = startoffset_fsb;
1045 do_div(s, extsz);
1046 s *= extsz;
1047 e = startoffset_fsb + allocatesize_fsb;
1048 if ((temp = do_mod(startoffset_fsb, extsz)))
1049 e += temp;
1050 if ((temp = do_mod(e, extsz)))
1051 e += extsz - temp;
1052 } else {
1053 s = 0;
1054 e = allocatesize_fsb;
1055 }
1056
1057 /*
1058 * The transaction reservation is limited to a 32-bit block
1059 * count, hence we need to limit the number of blocks we are
1060 * trying to reserve to avoid an overflow. We can't allocate
1061 * more than @nimaps extents, and an extent is limited on disk
1062 * to MAXEXTLEN (21 bits), so use that to enforce the limit.
1063 */
1064 resblks = min_t(xfs_fileoff_t, (e - s), (MAXEXTLEN * nimaps));
1065 if (unlikely(rt)) {
1066 resrtextents = qblocks = resblks;
1067 resrtextents /= mp->m_sb.sb_rextsize;
1068 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1069 quota_flag = XFS_QMOPT_RES_RTBLKS;
1070 } else {
1071 resrtextents = 0;
1072 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resblks);
1073 quota_flag = XFS_QMOPT_RES_REGBLKS;
1074 }
1075
1076 /*
1077 * Allocate and setup the transaction.
1078 */
Christoph Hellwig253f4912016-04-06 09:19:55 +10001079 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1080 resrtextents, 0, &tp);
1081
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001082 /*
1083 * Check for running out of space
1084 */
1085 if (error) {
1086 /*
1087 * Free the transaction structure.
1088 */
Dave Chinner24513372014-06-25 14:58:08 +10001089 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001090 break;
1091 }
1092 xfs_ilock(ip, XFS_ILOCK_EXCL);
1093 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks,
1094 0, quota_flag);
1095 if (error)
1096 goto error1;
1097
1098 xfs_trans_ijoin(tp, ip, 0);
1099
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001100 xfs_defer_init(&dfops, &firstfsb);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001101 error = xfs_bmapi_write(tp, ip, startoffset_fsb,
1102 allocatesize_fsb, alloc_type, &firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001103 resblks, imapp, &nimaps, &dfops);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001104 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001105 goto error0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001106
1107 /*
1108 * Complete the transaction
1109 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001110 error = xfs_defer_finish(&tp, &dfops, NULL);
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
Christoph Hellwig70393312015-06-04 13:48:08 +10001114 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001115 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001116 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001117 break;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001118
1119 allocated_fsb = imapp->br_blockcount;
1120
1121 if (nimaps == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001122 error = -ENOSPC;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001123 break;
1124 }
1125
1126 startoffset_fsb += allocated_fsb;
1127 allocatesize_fsb -= allocated_fsb;
1128 }
1129
1130 return error;
1131
1132error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001133 xfs_defer_cancel(&dfops);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001134 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
1135
1136error1: /* Just cancel transaction */
Christoph Hellwig4906e212015-06-04 13:47:56 +10001137 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001138 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1139 return error;
1140}
1141
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001142static int
1143xfs_unmap_extent(
1144 struct xfs_inode *ip,
1145 xfs_fileoff_t startoffset_fsb,
1146 xfs_filblks_t len_fsb,
1147 int *done)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001148{
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001149 struct xfs_mount *mp = ip->i_mount;
1150 struct xfs_trans *tp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001151 struct xfs_defer_ops dfops;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001152 xfs_fsblock_t firstfsb;
1153 uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
1154 int error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001155
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001156 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, &tp);
1157 if (error) {
1158 ASSERT(error == -ENOSPC || XFS_FORCED_SHUTDOWN(mp));
1159 return error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001160 }
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001161
1162 xfs_ilock(ip, XFS_ILOCK_EXCL);
1163 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, ip->i_gdquot,
1164 ip->i_pdquot, resblks, 0, XFS_QMOPT_RES_REGBLKS);
1165 if (error)
1166 goto out_trans_cancel;
1167
1168 xfs_trans_ijoin(tp, ip, 0);
1169
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001170 xfs_defer_init(&dfops, &firstfsb);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001171 error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, &firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001172 &dfops, done);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001173 if (error)
1174 goto out_bmap_cancel;
1175
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001176 error = xfs_defer_finish(&tp, &dfops, ip);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001177 if (error)
1178 goto out_bmap_cancel;
1179
1180 error = xfs_trans_commit(tp);
1181out_unlock:
1182 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001183 return error;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001184
1185out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001186 xfs_defer_cancel(&dfops);
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001187out_trans_cancel:
1188 xfs_trans_cancel(tp);
1189 goto out_unlock;
1190}
1191
1192static int
1193xfs_adjust_extent_unmap_boundaries(
1194 struct xfs_inode *ip,
1195 xfs_fileoff_t *startoffset_fsb,
1196 xfs_fileoff_t *endoffset_fsb)
1197{
1198 struct xfs_mount *mp = ip->i_mount;
1199 struct xfs_bmbt_irec imap;
1200 int nimap, error;
1201 xfs_extlen_t mod = 0;
1202
1203 nimap = 1;
1204 error = xfs_bmapi_read(ip, *startoffset_fsb, 1, &imap, &nimap, 0);
1205 if (error)
1206 return error;
1207
1208 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1209 xfs_daddr_t block;
1210
1211 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1212 block = imap.br_startblock;
1213 mod = do_div(block, mp->m_sb.sb_rextsize);
1214 if (mod)
1215 *startoffset_fsb += mp->m_sb.sb_rextsize - mod;
1216 }
1217
1218 nimap = 1;
1219 error = xfs_bmapi_read(ip, *endoffset_fsb - 1, 1, &imap, &nimap, 0);
1220 if (error)
1221 return error;
1222
1223 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
1224 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
1225 mod++;
1226 if (mod && mod != mp->m_sb.sb_rextsize)
1227 *endoffset_fsb -= mod;
1228 }
1229
1230 return 0;
1231}
1232
1233static int
1234xfs_flush_unmap_range(
1235 struct xfs_inode *ip,
1236 xfs_off_t offset,
1237 xfs_off_t len)
1238{
1239 struct xfs_mount *mp = ip->i_mount;
1240 struct inode *inode = VFS_I(ip);
1241 xfs_off_t rounding, start, end;
1242 int error;
1243
1244 /* wait for the completion of any pending DIOs */
1245 inode_dio_wait(inode);
1246
1247 rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_SIZE);
1248 start = round_down(offset, rounding);
1249 end = round_up(offset + len, rounding) - 1;
1250
1251 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
1252 if (error)
1253 return error;
1254 truncate_pagecache_range(inode, start, end);
1255 return 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001256}
1257
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001258int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001259xfs_free_file_space(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001260 struct xfs_inode *ip,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001261 xfs_off_t offset,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001262 xfs_off_t len)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001263{
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001264 struct xfs_mount *mp = ip->i_mount;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001265 xfs_fileoff_t startoffset_fsb;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001266 xfs_fileoff_t endoffset_fsb;
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001267 int done = 0, error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001268
1269 trace_xfs_free_file_space(ip);
1270
1271 error = xfs_qm_dqattach(ip, 0);
1272 if (error)
1273 return error;
1274
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001275 if (len <= 0) /* if nothing being freed */
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001276 return 0;
1277
1278 error = xfs_flush_unmap_range(ip, offset, len);
1279 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001280 return error;
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001281
1282 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001283 endoffset_fsb = XFS_B_TO_FSBT(mp, offset + len);
1284
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001285 /*
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001286 * Need to zero the stuff we're not freeing, on disk. If it's a RT file
1287 * and we can't use unwritten extents then we actually need to ensure
1288 * to zero the whole extent, otherwise we just need to take of block
1289 * boundaries, and xfs_bunmapi will handle the rest.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001290 */
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001291 if (XFS_IS_REALTIME_INODE(ip) &&
1292 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
1293 error = xfs_adjust_extent_unmap_boundaries(ip, &startoffset_fsb,
1294 &endoffset_fsb);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001295 if (error)
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001296 return error;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001297 }
Christoph Hellwigbdb0d042016-06-21 10:00:55 +10001298
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001299 if (endoffset_fsb > startoffset_fsb) {
1300 while (!done) {
1301 error = xfs_unmap_extent(ip, startoffset_fsb,
1302 endoffset_fsb - startoffset_fsb, &done);
1303 if (error)
1304 return error;
1305 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001306 }
1307
1308 /*
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001309 * Now that we've unmap all full blocks we'll have to zero out any
1310 * partial block at the beginning and/or end. xfs_zero_range is
Calvin Owens105664d2017-03-31 07:57:55 -07001311 * smart enough to skip any holes, including those we just created,
1312 * but we must take care not to zero beyond EOF and enlarge i_size.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001313 */
Calvin Owens105664d2017-03-31 07:57:55 -07001314
1315 if (offset >= XFS_ISIZE(ip))
1316 return 0;
1317
1318 if (offset + len > XFS_ISIZE(ip))
1319 len = XFS_ISIZE(ip) - offset;
1320
Christoph Hellwig3c2bdc92016-06-21 10:02:23 +10001321 return xfs_zero_range(ip, offset, len, NULL);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001322}
1323
Brian Foster5d11fb42014-10-30 10:35:11 +11001324/*
1325 * Preallocate and zero a range of a file. This mechanism has the allocation
1326 * semantics of fallocate and in addition converts data in the range to zeroes.
1327 */
Christoph Hellwig865e9442013-10-12 00:55:08 -07001328int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001329xfs_zero_file_space(
1330 struct xfs_inode *ip,
1331 xfs_off_t offset,
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001332 xfs_off_t len)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001333{
1334 struct xfs_mount *mp = ip->i_mount;
Brian Foster5d11fb42014-10-30 10:35:11 +11001335 uint blksize;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001336 int error;
1337
Dave Chinner897b73b2014-04-14 18:15:11 +10001338 trace_xfs_zero_file_space(ip);
1339
Brian Foster5d11fb42014-10-30 10:35:11 +11001340 blksize = 1 << mp->m_sb.sb_blocklog;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001341
1342 /*
Brian Foster5d11fb42014-10-30 10:35:11 +11001343 * Punch a hole and prealloc the range. We use hole punch rather than
1344 * unwritten extent conversion for two reasons:
1345 *
1346 * 1.) Hole punch handles partial block zeroing for us.
1347 *
1348 * 2.) If prealloc returns ENOSPC, the file range is still zero-valued
1349 * by virtue of the hole punch.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001350 */
Brian Foster5d11fb42014-10-30 10:35:11 +11001351 error = xfs_free_file_space(ip, offset, len);
1352 if (error)
1353 goto out;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001354
Brian Foster5d11fb42014-10-30 10:35:11 +11001355 error = xfs_alloc_file_space(ip, round_down(offset, blksize),
1356 round_up(offset + len, blksize) -
1357 round_down(offset, blksize),
1358 XFS_BMAPI_PREALLOC);
Christoph Hellwig5f8aca82013-10-12 00:55:06 -07001359out:
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001360 return error;
1361
1362}
1363
1364/*
Namjae Jeona904b1c2015-03-25 15:08:56 +11001365 * @next_fsb will keep track of the extent currently undergoing shift.
1366 * @stop_fsb will keep track of the extent at which we have to stop.
1367 * If we are shifting left, we will start with block (offset + len) and
1368 * shift each extent till last extent.
1369 * If we are shifting right, we will start with last extent inside file space
1370 * and continue until we reach the block corresponding to offset.
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001371 */
kbuild test robot72c1a732015-04-13 11:25:04 +10001372static int
Namjae Jeona904b1c2015-03-25 15:08:56 +11001373xfs_shift_file_space(
1374 struct xfs_inode *ip,
1375 xfs_off_t offset,
1376 xfs_off_t len,
1377 enum shift_direction direction)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001378{
1379 int done = 0;
1380 struct xfs_mount *mp = ip->i_mount;
1381 struct xfs_trans *tp;
1382 int error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001383 struct xfs_defer_ops dfops;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001384 xfs_fsblock_t first_block;
Namjae Jeona904b1c2015-03-25 15:08:56 +11001385 xfs_fileoff_t stop_fsb;
Brian Foster2c845f52014-09-23 15:37:09 +10001386 xfs_fileoff_t next_fsb;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001387 xfs_fileoff_t shift_fsb;
Brian Foster48af96a2017-02-15 10:18:10 -08001388 uint resblks;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001389
Namjae Jeona904b1c2015-03-25 15:08:56 +11001390 ASSERT(direction == SHIFT_LEFT || direction == SHIFT_RIGHT);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001391
Namjae Jeona904b1c2015-03-25 15:08:56 +11001392 if (direction == SHIFT_LEFT) {
Brian Foster48af96a2017-02-15 10:18:10 -08001393 /*
1394 * Reserve blocks to cover potential extent merges after left
1395 * shift operations.
1396 */
1397 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
Namjae Jeona904b1c2015-03-25 15:08:56 +11001398 next_fsb = XFS_B_TO_FSB(mp, offset + len);
1399 stop_fsb = XFS_B_TO_FSB(mp, VFS_I(ip)->i_size);
1400 } else {
1401 /*
1402 * If right shift, delegate the work of initialization of
1403 * next_fsb to xfs_bmap_shift_extent as it has ilock held.
1404 */
Brian Foster48af96a2017-02-15 10:18:10 -08001405 resblks = 0;
Namjae Jeona904b1c2015-03-25 15:08:56 +11001406 next_fsb = NULLFSBLOCK;
1407 stop_fsb = XFS_B_TO_FSB(mp, offset);
1408 }
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001409
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001410 shift_fsb = XFS_B_TO_FSB(mp, len);
1411
Brian Fosterf71721d2014-09-23 15:39:05 +10001412 /*
1413 * Trim eofblocks to avoid shifting uninitialized post-eof preallocation
1414 * into the accessible region of the file.
1415 */
Brian Foster41b9d722014-09-02 12:12:53 +10001416 if (xfs_can_free_eofblocks(ip, true)) {
Brian Fostera36b9262017-01-27 23:22:55 -08001417 error = xfs_free_eofblocks(ip);
Brian Foster41b9d722014-09-02 12:12:53 +10001418 if (error)
1419 return error;
1420 }
Dave Chinner1669a8c2014-09-02 12:12:53 +10001421
Brian Fosterf71721d2014-09-23 15:39:05 +10001422 /*
1423 * Writeback and invalidate cache for the remainder of the file as we're
Namjae Jeona904b1c2015-03-25 15:08:56 +11001424 * about to shift down every extent from offset to EOF.
Brian Fosterf71721d2014-09-23 15:39:05 +10001425 */
1426 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
Namjae Jeona904b1c2015-03-25 15:08:56 +11001427 offset, -1);
Brian Fosterf71721d2014-09-23 15:39:05 +10001428 if (error)
1429 return error;
1430 error = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001431 offset >> PAGE_SHIFT, -1);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001432 if (error)
1433 return error;
1434
Namjae Jeona904b1c2015-03-25 15:08:56 +11001435 /*
1436 * The extent shiting code works on extent granularity. So, if
1437 * stop_fsb is not the starting block of extent, we need to split
1438 * the extent at stop_fsb.
1439 */
1440 if (direction == SHIFT_RIGHT) {
1441 error = xfs_bmap_split_extent(ip, stop_fsb);
1442 if (error)
1443 return error;
1444 }
1445
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001446 while (!error && !done) {
Brian Foster48af96a2017-02-15 10:18:10 -08001447 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0,
1448 &tp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001449 if (error)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001450 break;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001451
1452 xfs_ilock(ip, XFS_ILOCK_EXCL);
1453 error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot,
Brian Foster48af96a2017-02-15 10:18:10 -08001454 ip->i_gdquot, ip->i_pdquot, resblks, 0,
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001455 XFS_QMOPT_RES_REGBLKS);
1456 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001457 goto out_trans_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001458
Namjae Jeona904b1c2015-03-25 15:08:56 +11001459 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001460
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001461 xfs_defer_init(&dfops, &first_block);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001462
1463 /*
1464 * We are using the write transaction in which max 2 bmbt
1465 * updates are allowed
1466 */
Namjae Jeona904b1c2015-03-25 15:08:56 +11001467 error = xfs_bmap_shift_extents(tp, ip, &next_fsb, shift_fsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001468 &done, stop_fsb, &first_block, &dfops,
Namjae Jeona904b1c2015-03-25 15:08:56 +11001469 direction, XFS_BMAP_MAX_SHIFT_EXTENTS);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001470 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001471 goto out_bmap_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001472
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001473 error = xfs_defer_finish(&tp, &dfops, NULL);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001474 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +10001475 goto out_bmap_cancel;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001476
Christoph Hellwig70393312015-06-04 13:48:08 +10001477 error = xfs_trans_commit(tp);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001478 }
1479
1480 return error;
1481
Brian Fosterd4a97a02015-08-19 10:01:40 +10001482out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001483 xfs_defer_cancel(&dfops);
Brian Fosterd4a97a02015-08-19 10:01:40 +10001484out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001485 xfs_trans_cancel(tp);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11001486 return error;
1487}
1488
1489/*
Namjae Jeona904b1c2015-03-25 15:08:56 +11001490 * xfs_collapse_file_space()
1491 * This routine frees disk space and shift extent for the given file.
1492 * The first thing we do is to free data blocks in the specified range
1493 * by calling xfs_free_file_space(). It would also sync dirty data
1494 * and invalidate page cache over the region on which collapse range
1495 * is working. And Shift extent records to the left to cover a hole.
1496 * RETURNS:
1497 * 0 on success
1498 * errno on error
1499 *
1500 */
1501int
1502xfs_collapse_file_space(
1503 struct xfs_inode *ip,
1504 xfs_off_t offset,
1505 xfs_off_t len)
1506{
1507 int error;
1508
1509 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1510 trace_xfs_collapse_file_space(ip);
1511
1512 error = xfs_free_file_space(ip, offset, len);
1513 if (error)
1514 return error;
1515
1516 return xfs_shift_file_space(ip, offset, len, SHIFT_LEFT);
1517}
1518
1519/*
1520 * xfs_insert_file_space()
1521 * This routine create hole space by shifting extents for the given file.
1522 * The first thing we do is to sync dirty data and invalidate page cache
1523 * over the region on which insert range is working. And split an extent
1524 * to two extents at given offset by calling xfs_bmap_split_extent.
1525 * And shift all extent records which are laying between [offset,
1526 * last allocated extent] to the right to reserve hole range.
1527 * RETURNS:
1528 * 0 on success
1529 * errno on error
1530 */
1531int
1532xfs_insert_file_space(
1533 struct xfs_inode *ip,
1534 loff_t offset,
1535 loff_t len)
1536{
1537 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1538 trace_xfs_insert_file_space(ip);
1539
1540 return xfs_shift_file_space(ip, offset, len, SHIFT_RIGHT);
1541}
1542
1543/*
Dave Chinnera133d952013-08-12 20:49:48 +10001544 * We need to check that the format of the data fork in the temporary inode is
1545 * valid for the target inode before doing the swap. This is not a problem with
1546 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
1547 * data fork depending on the space the attribute fork is taking so we can get
1548 * invalid formats on the target inode.
1549 *
1550 * E.g. target has space for 7 extents in extent format, temp inode only has
1551 * space for 6. If we defragment down to 7 extents, then the tmp format is a
1552 * btree, but when swapped it needs to be in extent format. Hence we can't just
1553 * blindly swap data forks on attr2 filesystems.
1554 *
1555 * Note that we check the swap in both directions so that we don't end up with
1556 * a corrupt temporary inode, either.
1557 *
1558 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
1559 * inode will prevent this situation from occurring, so all we do here is
1560 * reject and log the attempt. basically we are putting the responsibility on
1561 * userspace to get this right.
1562 */
1563static int
1564xfs_swap_extents_check_format(
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001565 struct xfs_inode *ip, /* target inode */
1566 struct xfs_inode *tip) /* tmp inode */
Dave Chinnera133d952013-08-12 20:49:48 +10001567{
1568
1569 /* Should never get a local format */
1570 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
1571 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
Dave Chinner24513372014-06-25 14:58:08 +10001572 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001573
1574 /*
1575 * if the target inode has less extents that then temporary inode then
1576 * why did userspace call us?
1577 */
1578 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
Dave Chinner24513372014-06-25 14:58:08 +10001579 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001580
1581 /*
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001582 * If we have to use the (expensive) rmap swap method, we can
1583 * handle any number of extents and any format.
1584 */
1585 if (xfs_sb_version_hasrmapbt(&ip->i_mount->m_sb))
1586 return 0;
1587
1588 /*
Dave Chinnera133d952013-08-12 20:49:48 +10001589 * if the target inode is in extent form and the temp inode is in btree
1590 * form then we will end up with the target inode in the wrong format
1591 * as we already know there are less extents in the temp inode.
1592 */
1593 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1594 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
Dave Chinner24513372014-06-25 14:58:08 +10001595 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001596
1597 /* Check temp in extent form to max in target */
1598 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1599 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) >
1600 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001601 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001602
1603 /* Check target in extent form to max in temp */
1604 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
1605 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) >
1606 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001607 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001608
1609 /*
1610 * If we are in a btree format, check that the temp root block will fit
1611 * in the target and that it has enough extents to be in btree format
1612 * in the target.
1613 *
1614 * Note that we have to be careful to allow btree->extent conversions
1615 * (a common defrag case) which will occur when the temp inode is in
1616 * extent format...
1617 */
1618 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1619 if (XFS_IFORK_BOFF(ip) &&
1620 XFS_BMAP_BMDR_SPACE(tip->i_df.if_broot) > XFS_IFORK_BOFF(ip))
Dave Chinner24513372014-06-25 14:58:08 +10001621 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001622 if (XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) <=
1623 XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001624 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001625 }
1626
1627 /* Reciprocal target->temp btree format checks */
1628 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1629 if (XFS_IFORK_BOFF(tip) &&
1630 XFS_BMAP_BMDR_SPACE(ip->i_df.if_broot) > XFS_IFORK_BOFF(tip))
Dave Chinner24513372014-06-25 14:58:08 +10001631 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001632 if (XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) <=
1633 XFS_IFORK_MAXEXT(tip, XFS_DATA_FORK))
Dave Chinner24513372014-06-25 14:58:08 +10001634 return -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001635 }
1636
1637 return 0;
1638}
1639
Dave Chinner7abbb8f2014-09-23 16:20:11 +10001640static int
Dave Chinner4ef897a2014-08-04 13:44:08 +10001641xfs_swap_extent_flush(
1642 struct xfs_inode *ip)
1643{
1644 int error;
1645
1646 error = filemap_write_and_wait(VFS_I(ip)->i_mapping);
1647 if (error)
1648 return error;
1649 truncate_pagecache_range(VFS_I(ip), 0, -1);
1650
1651 /* Verify O_DIRECT for ftmp */
1652 if (VFS_I(ip)->i_mapping->nrpages)
1653 return -EINVAL;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001654 return 0;
1655}
1656
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001657/*
1658 * Move extents from one file to another, when rmap is enabled.
1659 */
1660STATIC int
1661xfs_swap_extent_rmap(
1662 struct xfs_trans **tpp,
1663 struct xfs_inode *ip,
1664 struct xfs_inode *tip)
1665{
1666 struct xfs_bmbt_irec irec;
1667 struct xfs_bmbt_irec uirec;
1668 struct xfs_bmbt_irec tirec;
1669 xfs_fileoff_t offset_fsb;
1670 xfs_fileoff_t end_fsb;
1671 xfs_filblks_t count_fsb;
1672 xfs_fsblock_t firstfsb;
1673 struct xfs_defer_ops dfops;
1674 int error;
1675 xfs_filblks_t ilen;
1676 xfs_filblks_t rlen;
1677 int nimaps;
1678 __uint64_t tip_flags2;
1679
1680 /*
1681 * If the source file has shared blocks, we must flag the donor
1682 * file as having shared blocks so that we get the shared-block
1683 * rmap functions when we go to fix up the rmaps. The flags
1684 * will be switch for reals later.
1685 */
1686 tip_flags2 = tip->i_d.di_flags2;
1687 if (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK)
1688 tip->i_d.di_flags2 |= XFS_DIFLAG2_REFLINK;
1689
1690 offset_fsb = 0;
1691 end_fsb = XFS_B_TO_FSB(ip->i_mount, i_size_read(VFS_I(ip)));
1692 count_fsb = (xfs_filblks_t)(end_fsb - offset_fsb);
1693
1694 while (count_fsb) {
1695 /* Read extent from the donor file */
1696 nimaps = 1;
1697 error = xfs_bmapi_read(tip, offset_fsb, count_fsb, &tirec,
1698 &nimaps, 0);
1699 if (error)
1700 goto out;
1701 ASSERT(nimaps == 1);
1702 ASSERT(tirec.br_startblock != DELAYSTARTBLOCK);
1703
1704 trace_xfs_swap_extent_rmap_remap(tip, &tirec);
1705 ilen = tirec.br_blockcount;
1706
1707 /* Unmap the old blocks in the source file. */
1708 while (tirec.br_blockcount) {
1709 xfs_defer_init(&dfops, &firstfsb);
1710 trace_xfs_swap_extent_rmap_remap_piece(tip, &tirec);
1711
1712 /* Read extent from the source file */
1713 nimaps = 1;
1714 error = xfs_bmapi_read(ip, tirec.br_startoff,
1715 tirec.br_blockcount, &irec,
1716 &nimaps, 0);
1717 if (error)
1718 goto out_defer;
1719 ASSERT(nimaps == 1);
1720 ASSERT(tirec.br_startoff == irec.br_startoff);
1721 trace_xfs_swap_extent_rmap_remap_piece(ip, &irec);
1722
1723 /* Trim the extent. */
1724 uirec = tirec;
1725 uirec.br_blockcount = rlen = min_t(xfs_filblks_t,
1726 tirec.br_blockcount,
1727 irec.br_blockcount);
1728 trace_xfs_swap_extent_rmap_remap_piece(tip, &uirec);
1729
1730 /* Remove the mapping from the donor file. */
1731 error = xfs_bmap_unmap_extent((*tpp)->t_mountp, &dfops,
1732 tip, &uirec);
1733 if (error)
1734 goto out_defer;
1735
1736 /* Remove the mapping from the source file. */
1737 error = xfs_bmap_unmap_extent((*tpp)->t_mountp, &dfops,
1738 ip, &irec);
1739 if (error)
1740 goto out_defer;
1741
1742 /* Map the donor file's blocks into the source file. */
1743 error = xfs_bmap_map_extent((*tpp)->t_mountp, &dfops,
1744 ip, &uirec);
1745 if (error)
1746 goto out_defer;
1747
1748 /* Map the source file's blocks into the donor file. */
1749 error = xfs_bmap_map_extent((*tpp)->t_mountp, &dfops,
1750 tip, &irec);
1751 if (error)
1752 goto out_defer;
1753
1754 error = xfs_defer_finish(tpp, &dfops, ip);
1755 if (error)
1756 goto out_defer;
1757
1758 tirec.br_startoff += rlen;
1759 if (tirec.br_startblock != HOLESTARTBLOCK &&
1760 tirec.br_startblock != DELAYSTARTBLOCK)
1761 tirec.br_startblock += rlen;
1762 tirec.br_blockcount -= rlen;
1763 }
1764
1765 /* Roll on... */
1766 count_fsb -= ilen;
1767 offset_fsb += ilen;
1768 }
1769
1770 tip->i_d.di_flags2 = tip_flags2;
1771 return 0;
1772
1773out_defer:
1774 xfs_defer_cancel(&dfops);
1775out:
1776 trace_xfs_swap_extent_rmap_error(ip, error, _RET_IP_);
1777 tip->i_d.di_flags2 = tip_flags2;
1778 return error;
1779}
1780
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001781/* Swap the extents of two files by swapping data forks. */
1782STATIC int
1783xfs_swap_extent_forks(
1784 struct xfs_trans *tp,
1785 struct xfs_inode *ip,
1786 struct xfs_inode *tip,
1787 int *src_log_flags,
1788 int *target_log_flags)
1789{
1790 struct xfs_ifork tempifp, *ifp, *tifp;
1791 int aforkblks = 0;
1792 int taforkblks = 0;
Eric Sandeen4dfce572016-11-08 12:55:18 +11001793 xfs_extnum_t nextents;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001794 __uint64_t tmp;
1795 int error;
1796
1797 /*
1798 * Count the number of extended attribute blocks
1799 */
1800 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
1801 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1802 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK,
1803 &aforkblks);
1804 if (error)
1805 return error;
1806 }
1807 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
1808 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
1809 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
1810 &taforkblks);
1811 if (error)
1812 return error;
1813 }
1814
1815 /*
1816 * Before we've swapped the forks, lets set the owners of the forks
1817 * appropriately. We have to do this as we are demand paging the btree
1818 * buffers, and so the validation done on read will expect the owner
1819 * field to be correctly set. Once we change the owners, we can swap the
1820 * inode forks.
1821 */
1822 if (ip->i_d.di_version == 3 &&
1823 ip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1824 (*target_log_flags) |= XFS_ILOG_DOWNER;
1825 error = xfs_bmbt_change_owner(tp, ip, XFS_DATA_FORK,
1826 tip->i_ino, NULL);
1827 if (error)
1828 return error;
1829 }
1830
1831 if (tip->i_d.di_version == 3 &&
1832 tip->i_d.di_format == XFS_DINODE_FMT_BTREE) {
1833 (*src_log_flags) |= XFS_ILOG_DOWNER;
1834 error = xfs_bmbt_change_owner(tp, tip, XFS_DATA_FORK,
1835 ip->i_ino, NULL);
1836 if (error)
1837 return error;
1838 }
1839
1840 /*
1841 * Swap the data forks of the inodes
1842 */
1843 ifp = &ip->i_df;
1844 tifp = &tip->i_df;
1845 tempifp = *ifp; /* struct copy */
1846 *ifp = *tifp; /* struct copy */
1847 *tifp = tempifp; /* struct copy */
1848
1849 /*
1850 * Fix the on-disk inode values
1851 */
1852 tmp = (__uint64_t)ip->i_d.di_nblocks;
1853 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
1854 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
1855
1856 tmp = (__uint64_t) ip->i_d.di_nextents;
1857 ip->i_d.di_nextents = tip->i_d.di_nextents;
1858 tip->i_d.di_nextents = tmp;
1859
1860 tmp = (__uint64_t) ip->i_d.di_format;
1861 ip->i_d.di_format = tip->i_d.di_format;
1862 tip->i_d.di_format = tmp;
1863
1864 /*
1865 * The extents in the source inode could still contain speculative
1866 * preallocation beyond EOF (e.g. the file is open but not modified
1867 * while defrag is in progress). In that case, we need to copy over the
1868 * number of delalloc blocks the data fork in the source inode is
1869 * tracking beyond EOF so that when the fork is truncated away when the
1870 * temporary inode is unlinked we don't underrun the i_delayed_blks
1871 * counter on that inode.
1872 */
1873 ASSERT(tip->i_delayed_blks == 0);
1874 tip->i_delayed_blks = ip->i_delayed_blks;
1875 ip->i_delayed_blks = 0;
1876
1877 switch (ip->i_d.di_format) {
1878 case XFS_DINODE_FMT_EXTENTS:
Eric Sandeen5d829302016-11-08 12:59:42 +11001879 /*
1880 * If the extents fit in the inode, fix the pointer. Otherwise
1881 * it's already NULL or pointing to the extent.
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001882 */
Eric Sandeen5d829302016-11-08 12:59:42 +11001883 nextents = xfs_iext_count(&ip->i_df);
1884 if (nextents <= XFS_INLINE_EXTS)
1885 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001886 (*src_log_flags) |= XFS_ILOG_DEXT;
1887 break;
1888 case XFS_DINODE_FMT_BTREE:
1889 ASSERT(ip->i_d.di_version < 3 ||
1890 (*src_log_flags & XFS_ILOG_DOWNER));
1891 (*src_log_flags) |= XFS_ILOG_DBROOT;
1892 break;
1893 }
1894
1895 switch (tip->i_d.di_format) {
1896 case XFS_DINODE_FMT_EXTENTS:
Eric Sandeen5d829302016-11-08 12:59:42 +11001897 /*
1898 * If the extents fit in the inode, fix the pointer. Otherwise
1899 * it's already NULL or pointing to the extent.
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001900 */
Eric Sandeen5d829302016-11-08 12:59:42 +11001901 nextents = xfs_iext_count(&tip->i_df);
1902 if (nextents <= XFS_INLINE_EXTS)
1903 tifp->if_u1.if_extents = tifp->if_u2.if_inline_ext;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001904 (*target_log_flags) |= XFS_ILOG_DEXT;
1905 break;
1906 case XFS_DINODE_FMT_BTREE:
1907 (*target_log_flags) |= XFS_ILOG_DBROOT;
1908 ASSERT(tip->i_d.di_version < 3 ||
1909 (*target_log_flags & XFS_ILOG_DOWNER));
1910 break;
1911 }
1912
1913 return 0;
1914}
1915
Dave Chinner4ef897a2014-08-04 13:44:08 +10001916int
Dave Chinnera133d952013-08-12 20:49:48 +10001917xfs_swap_extents(
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001918 struct xfs_inode *ip, /* target inode */
1919 struct xfs_inode *tip, /* tmp inode */
1920 struct xfs_swapext *sxp)
Dave Chinnera133d952013-08-12 20:49:48 +10001921{
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001922 struct xfs_mount *mp = ip->i_mount;
1923 struct xfs_trans *tp;
1924 struct xfs_bstat *sbp = &sxp->sx_stat;
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001925 int src_log_flags, target_log_flags;
1926 int error = 0;
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001927 int lock_flags;
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07001928 struct xfs_ifork *cowfp;
Darrick J. Wonge06259a2016-10-03 09:11:52 -07001929 __uint64_t f;
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001930 int resblks;
Dave Chinnera133d952013-08-12 20:49:48 +10001931
Dave Chinnera133d952013-08-12 20:49:48 +10001932 /*
Dave Chinner723cac42015-02-23 21:47:29 +11001933 * Lock the inodes against other IO, page faults and truncate to
1934 * begin with. Then we can ensure the inodes are flushed and have no
1935 * page cache safely. Once we have done this we can take the ilocks and
1936 * do the rest of the checks.
Dave Chinnera133d952013-08-12 20:49:48 +10001937 */
Christoph Hellwig65523212016-11-30 14:33:25 +11001938 lock_two_nondirectories(VFS_I(ip), VFS_I(tip));
1939 lock_flags = XFS_MMAPLOCK_EXCL;
Dave Chinner723cac42015-02-23 21:47:29 +11001940 xfs_lock_two_inodes(ip, tip, XFS_MMAPLOCK_EXCL);
Dave Chinnera133d952013-08-12 20:49:48 +10001941
1942 /* Verify that both files have the same format */
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001943 if ((VFS_I(ip)->i_mode & S_IFMT) != (VFS_I(tip)->i_mode & S_IFMT)) {
Dave Chinner24513372014-06-25 14:58:08 +10001944 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001945 goto out_unlock;
1946 }
1947
1948 /* Verify both files are either real-time or non-realtime */
1949 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
Dave Chinner24513372014-06-25 14:58:08 +10001950 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001951 goto out_unlock;
1952 }
1953
Dave Chinner4ef897a2014-08-04 13:44:08 +10001954 error = xfs_swap_extent_flush(ip);
Dave Chinnera133d952013-08-12 20:49:48 +10001955 if (error)
1956 goto out_unlock;
Dave Chinner4ef897a2014-08-04 13:44:08 +10001957 error = xfs_swap_extent_flush(tip);
1958 if (error)
1959 goto out_unlock;
Dave Chinnera133d952013-08-12 20:49:48 +10001960
Darrick J. Wong1f08af52016-10-03 09:11:53 -07001961 /*
1962 * Extent "swapping" with rmap requires a permanent reservation and
1963 * a block reservation because it's really just a remap operation
1964 * performed with log redo items!
1965 */
1966 if (xfs_sb_version_hasrmapbt(&mp->m_sb)) {
1967 /*
1968 * Conceptually this shouldn't affect the shape of either
1969 * bmbt, but since we atomically move extents one by one,
1970 * we reserve enough space to rebuild both trees.
1971 */
1972 resblks = XFS_SWAP_RMAP_SPACE_RES(mp,
1973 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK),
1974 XFS_DATA_FORK) +
1975 XFS_SWAP_RMAP_SPACE_RES(mp,
1976 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK),
1977 XFS_DATA_FORK);
1978 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
1979 0, 0, &tp);
1980 } else
1981 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0,
1982 0, 0, &tp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001983 if (error)
Dave Chinnera133d952013-08-12 20:49:48 +10001984 goto out_unlock;
Dave Chinner723cac42015-02-23 21:47:29 +11001985
1986 /*
1987 * Lock and join the inodes to the tansaction so that transaction commit
1988 * or cancel will unlock the inodes from this point onwards.
1989 */
Dave Chinner4ef897a2014-08-04 13:44:08 +10001990 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
1991 lock_flags |= XFS_ILOCK_EXCL;
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07001992 xfs_trans_ijoin(tp, ip, 0);
1993 xfs_trans_ijoin(tp, tip, 0);
Dave Chinner723cac42015-02-23 21:47:29 +11001994
Dave Chinnera133d952013-08-12 20:49:48 +10001995
1996 /* Verify all data are being swapped */
1997 if (sxp->sx_offset != 0 ||
1998 sxp->sx_length != ip->i_d.di_size ||
1999 sxp->sx_length != tip->i_d.di_size) {
Dave Chinner24513372014-06-25 14:58:08 +10002000 error = -EFAULT;
Dave Chinner4ef897a2014-08-04 13:44:08 +10002001 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002002 }
2003
2004 trace_xfs_swap_extent_before(ip, 0);
2005 trace_xfs_swap_extent_before(tip, 1);
2006
2007 /* check inode formats now that data is flushed */
2008 error = xfs_swap_extents_check_format(ip, tip);
2009 if (error) {
2010 xfs_notice(mp,
2011 "%s: inode 0x%llx format is incompatible for exchanging.",
2012 __func__, ip->i_ino);
Dave Chinner4ef897a2014-08-04 13:44:08 +10002013 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002014 }
2015
2016 /*
2017 * Compare the current change & modify times with that
2018 * passed in. If they differ, we abort this swap.
2019 * This is the mechanism used to ensure the calling
2020 * process that the file was not changed out from
2021 * under it.
2022 */
2023 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
2024 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
2025 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
2026 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
Dave Chinner24513372014-06-25 14:58:08 +10002027 error = -EBUSY;
Dave Chinner81217682014-08-04 13:29:32 +10002028 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002029 }
Dave Chinnera133d952013-08-12 20:49:48 +10002030
Dave Chinner21b5c972013-08-30 10:23:44 +10002031 /*
Dave Chinner21b5c972013-08-30 10:23:44 +10002032 * Note the trickiness in setting the log flags - we set the owner log
2033 * flag on the opposite inode (i.e. the inode we are setting the new
2034 * owner to be) because once we swap the forks and log that, log
2035 * recovery is going to see the fork as owned by the swapped inode,
2036 * not the pre-swapped inodes.
2037 */
2038 src_log_flags = XFS_ILOG_CORE;
2039 target_log_flags = XFS_ILOG_CORE;
Dave Chinner21b5c972013-08-30 10:23:44 +10002040
Darrick J. Wong1f08af52016-10-03 09:11:53 -07002041 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
2042 error = xfs_swap_extent_rmap(&tp, ip, tip);
2043 else
2044 error = xfs_swap_extent_forks(tp, ip, tip, &src_log_flags,
2045 &target_log_flags);
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002046 if (error)
2047 goto out_trans_cancel;
Dave Chinnera133d952013-08-12 20:49:48 +10002048
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07002049 /* Do we have to swap reflink flags? */
2050 if ((ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK) ^
2051 (tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK)) {
2052 f = ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK;
2053 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
2054 ip->i_d.di_flags2 |= tip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK;
2055 tip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
2056 tip->i_d.di_flags2 |= f & XFS_DIFLAG2_REFLINK;
2057 cowfp = ip->i_cowfp;
2058 ip->i_cowfp = tip->i_cowfp;
2059 tip->i_cowfp = cowfp;
Darrick J. Wong83104d42016-10-03 09:11:46 -07002060 xfs_inode_set_cowblocks_tag(ip);
2061 xfs_inode_set_cowblocks_tag(tip);
Darrick J. Wongf0bc4d12016-10-03 09:11:42 -07002062 }
2063
Dave Chinnera133d952013-08-12 20:49:48 +10002064 xfs_trans_log_inode(tp, ip, src_log_flags);
2065 xfs_trans_log_inode(tp, tip, target_log_flags);
2066
2067 /*
2068 * If this is a synchronous mount, make sure that the
2069 * transaction goes to disk before returning to the user.
2070 */
2071 if (mp->m_flags & XFS_MOUNT_WSYNC)
2072 xfs_trans_set_sync(tp);
2073
Christoph Hellwig70393312015-06-04 13:48:08 +10002074 error = xfs_trans_commit(tp);
Dave Chinnera133d952013-08-12 20:49:48 +10002075
2076 trace_xfs_swap_extent_after(ip, 0);
2077 trace_xfs_swap_extent_after(tip, 1);
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002078
Christoph Hellwig65523212016-11-30 14:33:25 +11002079out_unlock:
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002080 xfs_iunlock(ip, lock_flags);
2081 xfs_iunlock(tip, lock_flags);
Christoph Hellwig65523212016-11-30 14:33:25 +11002082 unlock_two_nondirectories(VFS_I(ip), VFS_I(tip));
Dave Chinnera133d952013-08-12 20:49:48 +10002083 return error;
2084
Darrick J. Wong39aff5f2016-10-03 09:11:53 -07002085out_trans_cancel:
2086 xfs_trans_cancel(tp);
Christoph Hellwig65523212016-11-30 14:33:25 +11002087 goto out_unlock;
Dave Chinnera133d952013-08-12 20:49:48 +10002088}